Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dotnet CLI: Consolidate ResX files #48199

Merged
merged 10 commits into from
Apr 7, 2025
Merged

Conversation

MiYanni
Copy link
Member

@MiYanni MiYanni commented Apr 5, 2025

Caution

I have no idea how to review this PR.

Summary

I cannot overstate the amount of work this took to do. The main idea was to reduce the amount of .resx files in the dotnet project. Every single .resx file would generate 13 .xlf files for localization. Many of the .resx files had less than a dozen strings in them. There are (still) duplicate strings as I decided to not focus on deduplicating string values. That can be handled at a later date.

The primary issue with these .resx files is that all of them (except for one) were named LocalizableStrings.resx. This caused a massive amount of name collisions all over the place. Any time that a single source file needed to use more than one .resx file, they would clash and require a using-alias. This was madness to manage when trying to rename the namespaces. To solve this, I've collapsed all the .resx files down to two with unique names, CliStrings.resx and CliCommandStrings.resx. The latter handles the strings in the Commands folder and the former handles everything else.

Here are some numbers:

Numbers

  • Before: 54 .resx files
    • After: 2 .resx files
  • Before: 1111 strings
    • After: 919 strings (192 unused strings removed)
  • Deleted: over ~670 files

The Process

There are no built-in tools to handle this process in Visual Studio. VS generally is very, very poor at managing .resx files. It doesn't recognize that the namespaces for them are designated in MSBuild in the EmbeddedResource nodes. So, renaming namespaces within the source code doesn't recognize these namespaces. Similarly, if you rename a resource string in the code, it WILL NOT update the entry in the .resx file. Because of this janky tooling, I had to do a multi-step process.

To do this work, I wrote some of my own tools to scan the .resx files in the dotnet directory. I used this information and made it into an Excel spreadsheet to review. then, I decided on a plan by deduplicating all resource string names. That way, I could combine all of them into a single .resx file, but ultimately, I kept it split between the Commands folder and everything else. To rename these string names, I had to do this process manually for every string:

The Process-Process

  1. Open the generated .cs file for the particular .resx file I wanted to update the strings for.
  2. Use the Rename feature in VS to update the names to unique names (generally, add the Command name to the front) which would update all the references in the code for this string.
    • I did this to all the strings for that particular .resx file at the same time.
  3. After the code was updated in this manner, I opened the .resx file in the VS editor and then renamed the strings AGAIN.
    • Doing this would actually update the .resx file and regenerate the .cs file.
  4. At this point, the .resx file and the code referencing the strings aligned.
    • I did this manually for 242 strings.

The Follow-up-Process

After making things no longer clash, I realized I had enough information to determine what strings are actually used. I ran some more logic through my tool and built another spreadsheet. I then manually walked through the .resx files that had these unused strings and deleted 192 unused strings. I could have figured out a way to do this with my tool directly, but rewriting the .resx files is actually tricky with the XML serializer. So, it was easier to just do the cleaning myself.

Lastly, I had my tool output the set of strings that were outside of the Commands folder and moved them into the CommonLocalizableStrings.resx file. I fixed all issues related to that process and had a working build again. Then, I had my tool output all the strings inside the Commands folder and put them into a new LocalizableStrings.resx file in the Commands folder. This allowed the code to (mostly) work automatically except for all the specific using-aliases and other fully-qualified uses. I ended up going through every file in the dotnet project and most of the test project source files by hand. This way, I could fix the weird situations caused since I couldn't complete a build at this point. Then, I got a working build again.

Lastly-lastly, I renamed CommonLocalizableStrings.rex to CliStrings.resx, fixed all those build issues, renamed the Commands LocalizableStrings.resx to CliCommandStrings.resx, and fixed all of those build issues (again, by hand). This allowed for no more need for any using-aliases or fully-qualified access to the resource files since the names were unique.

Other Changes

I noticed some file license headers were old so I fixed those as I saw them. Also, there were several files that didn't have corrected namespaces, even after I have merged the PR to fix the namespaces. I realized why the tool failed to do these; they're shared source files. I manually fixed these namespaces since I was manually going through every file anyway. So, this fixed even more usings in many files.

@MiYanni MiYanni requested review from a team and Copilot April 5, 2025 08:42
@MiYanni MiYanni requested a review from a team as a code owner April 5, 2025 08:42
Copy link
Contributor

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copilot reviewed 1149 out of 1163 changed files in this pull request and generated no comments.

Files not reviewed (14)
  • src/Cli/dotnet/BuildServer/LocalizableStrings.resx: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.cs.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.de.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.es.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.fr.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.it.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.ja.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.ko.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.pl.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.pt-BR.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.ru.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.tr.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.zh-Hans.xlf: Language not supported
  • src/Cli/dotnet/BuildServer/xlf/LocalizableStrings.zh-Hant.xlf: Language not supported

@dotnet-issue-labeler dotnet-issue-labeler bot added the untriaged Request triage from a team member label Apr 5, 2025
MiYanni added 4 commits April 5, 2025 10:12
# Conflicts:
#	src/Cli/dotnet/Commands/Test/SolutionAndProjectUtility.cs
…w resx file, so the test results needed updated. Minor adjustments to test file syntax.
# Conflicts:
#	src/Cli/dotnet/Commands/Test/TestingPlatformOptions.cs
Copy link
Member

@nagilson nagilson left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me, thank you for this!

I think one disadvantage is that each area path does not have its own set of strings, (for the sake of simplification) but it's probably better to keep it in one file.

This may also include the number of merge conflicts in the resx files, but I appreciate this simplification enough that I think it's ok. We already discussed the translations and that the translation team is easily able to redo this work. Admittedly, this may be a 'breaking change' in the sense that some output text may change in other languages if people depended on that behavior, but this is a poor design choice.

The other thing is that nitpicks are often found by external contributors in the translation strings, so we will lose that work. However, my hope is the team will consider this and properly reuse the work which has already been done.

Thank you for this!

BTW in terms of review, I looked through the files in vscode and did some random spot check sample validation. I tried to get copilot to review the changes for me, but it said it didnt support resx files, lol. It gave a script that didn't work, so I thought it was a good idea to try to compare the diff using it, but I'll have to give it another go in the future 🤷 I tried another approach but then it told me that was too much work to do.

@MiYanni MiYanni merged commit 783c847 into dotnet:main Apr 7, 2025
39 checks passed
edvilme added a commit to edvilme/sdk that referenced this pull request Apr 8, 2025
commit 96aa638531dc11dec5670d34dae05fb4e413157a
Author: Alexander Köplinger <[email protected]>
Date:   Tue Apr 8 18:37:40 2025 +0200

    Add workloads build (#47225)

    This builds the emsdk and runtime workload manifests here instead of the original repos. It also adds the VS insertion .zip creation which is only built in the official build by default.

    Closes https://github.com/dotnet/source-build/issues/3904

commit e20d672fcf93502f8a1b88b491488753d069b6ad
Author: Viktor Hofer <[email protected]>
Date:   Tue Apr 8 18:12:09 2025 +0200

    Delete src/SourceBuild/patches/aspire/0001-Only-add-msi-in-Signing.patch (#48258)

commit 6da664a4da8de269fa1403c5f1677b2c73936486
Author: Viktor Hofer <[email protected]>
Date:   Tue Apr 8 18:06:52 2025 +0200

    Delete src/SourceBuild/patches/aspire/0001-Only-add-msi-in-Signing.patch (#48258)

commit 10bd7f4c9c103a675a485e8bb17d75c63951a222
Author: Ella Hathaway <[email protected]>
Date:   Tue Apr 8 08:54:45 2025 -0700

    Exclude dotnet*.js files from signing-validation (#48233)

commit da4d52fd7b707fe88a99bfa4b507ef3306b110ba
Author: Jan Jones <[email protected]>
Date:   Tue Apr 8 17:49:14 2025 +0200

    Use global temp directory for run file outputs (#48169)

commit a7c3088fb6d27752549a34349c14918b0f340a43
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 15:26:18 2025 +0000

    [main] Update dependencies from dotnet/msbuild (#48251)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Viktor Hofer <[email protected]>

commit 63a556a65da1adc8633f3181de50cedb282d819c
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 14:59:28 2025 +0000

    [main] Update dependencies from dotnet/aspnetcore (#48087)

    [main] Update dependencies from dotnet/aspnetcore

     - Merge branch 'main' into darc-main-94c766ae-c755-4c4b-b205-09ac43b8ec84

     - Delete src/SourceBuild/patches/aspnetcore/0001-IDE0031-fixes.patch

commit 95df8293bd3b284e6870129eae5386d0744e6e74
Author: Matt Mitchell <[email protected]>
Date:   Tue Apr 8 07:31:11 2025 -0700

    Sign and harden pkgs (#47996)

commit bf923229d5419bac494c4ead378a3736d43a0f20
Author: .NET Source-Build Bot <[email protected]>
Date:   Tue Apr 8 07:48:34 2025 -0500

    Re-Bootstrap Source Build to .NET 10.0.100-preview.4.25203.1 (#48226)

    Co-authored-by: Nikola Milosavljevic (CLR) false <[email protected]>
    Co-authored-by: Viktor Hofer <[email protected]>

commit 09f2446354bcd538bf4587f2976085e350cdcd62
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 05:13:19 2025 -0700

    [main] Update dependencies from dotnet/windowsdesktop (#48244)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit bdf58337fe6b4a4aae9d990a46c02fa381a798b5
Author: Přemek Vysoký <[email protected]>
Date:   Tue Apr 8 12:49:41 2025 +0200

    Remove `testfx` from VMR source mappings (#48225)

commit 569fffca3902675b44d5cb5f7e77f83ec6a9397e
Author: Viktor Hofer <[email protected]>
Date:   Tue Apr 8 12:21:01 2025 +0200

    Fix productCommit(.txt|.json) content in VMR (#48249)

commit ef8529538d13e3f42a6d7bafd3b47770ef92164f
Merge: 44ca9bf55d 79f1fdb87e
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 10:02:20 2025 +0000

    [main] Update dependencies from dotnet/arcade (#48238)

commit 44ca9bf55ddaa65ccdee4a50733bb8567ca0729c
Merge: c822bd4183 04811bab27
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 09:45:16 2025 +0000

    [main] Update dependencies from dotnet/templating (#48247)

commit c822bd41830105441c661822759440cf3538ece9
Merge: d4bbb191a4 c841ec7830
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 09:07:50 2025 +0000

    [automated] Merge branch 'release/9.0.3xx' => 'main' (#48235)

commit d4bbb191a42a38d0ecdb6a1f776cf638db834a35
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 10:36:05 2025 +0200

    [main] Update dependencies from dotnet/runtime (#48034)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Viktor Hofer <[email protected]>
    Co-authored-by: Forgind <[email protected]>
    Co-authored-by: Matt Mitchell (.NET) <[email protected]>
    Co-authored-by: Carlos Sánchez López <[email protected]>
    Co-authored-by: Alexander Köplinger <[email protected]>

commit 51d5ad06d395d3a7edadbd95548c46b0676437a2
Merge: e378cb0545 a3984fb217
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 08:28:19 2025 +0000

    [main] Update dependencies from microsoft/testfx (#48241)

commit e378cb054515b35caa979a8d5324b5d2d1bccb8a
Merge: be13857cc4 78d135d183
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 07:53:06 2025 +0000

    [main] Update dependencies from dotnet/source-build-reference-packages (#48239)

commit be13857cc4ac8bb8986014019431e33f89b0373b
Merge: 43b1c12e33 fab1d60ded
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 07:52:33 2025 +0000

    [main] Update dependencies from dotnet/source-build-externals (#48237)

commit 04811bab27d26c9cb89bec35cffdbf64a54b2231
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 06:55:07 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250407.8

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Authoring.TemplateVerifier , Microsoft.TemplateEngine.Edge , Microsoft.TemplateEngine.Mocks , Microsoft.TemplateEngine.Orchestrator.RunnableProjects , Microsoft.TemplateEngine.TestHelper , Microsoft.TemplateEngine.Utils , Microsoft.TemplateSearch.Common , Microsoft.TemplateSearch.TemplateDiscovery
     From Version 10.0.100-preview.4.25207.6 -> To Version 10.0.100-preview.4.25207.8

commit c841ec78306abe6b9893fbcdf4d5a0f5aa908aa6
Merge: e6814aeed9 43b1c12e33
Author: Jason Zhai <[email protected]>
Date:   Mon Apr 7 22:59:28 2025 -0700

    Merge branch 'main' of https://github.com/dotnet/sdk into merge/release/9.0.3xx-to-main

commit a3984fb217bd2658a431bcb693080d04d70feb21
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 05:02:26 2025 +0000

    Update dependencies from https://github.com/microsoft/testfx build 20250407.6

    Microsoft.Testing.Platform , MSTest
     From Version 1.7.0-preview.25205.1 -> To Version 1.7.0-preview.25207.6

commit 78d135d183f8026c0020643ce4f1a1debb891554
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 05:02:09 2025 +0000

    Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20250407.2

    Microsoft.SourceBuild.Intermediate.source-build-reference-packages
     From Version 10.0.620402 -> To Version 10.0.620702

commit 79f1fdb87ecbdb4338aa35c3fc0875a2b854ae6a
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 05:02:07 2025 +0000

    Update dependencies from https://github.com/dotnet/arcade build 20250407.4

    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions
     From Version 10.0.0-beta.25206.1 -> To Version 10.0.0-beta.25207.4

commit fab1d60dedbcec89257a805f588222b115fbd578
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 05:02:06 2025 +0000

    Update dependencies from https://github.com/dotnet/source-build-externals build 20250407.1

    Microsoft.SourceBuild.Intermediate.source-build-externals
     From Version 10.0.620205 -> To Version 10.0.620701

commit e6814aeed95efe30da26ad84829caa81f9b317b1
Merge: a783199e8b 24a76c3551
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 02:05:48 2025 +0000

    [automated] Merge branch 'release/9.0.2xx' => 'release/9.0.3xx' (#48185)

commit 43b1c12e3362098a23ca1018503eb56516840b6a
Merge: 783c8475ee a67709e7f4
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 02:00:17 2025 +0000

    [main] Update dependencies from dotnet/fsharp (#48232)

commit 783c8475eee11def2957166df505ae3fde7c58ba
Merge: f922dd9429 263ea56aff
Author: Michael Yanni <[email protected]>
Date:   Mon Apr 7 16:25:46 2025 -0700

    dotnet CLI: Consolidate ResX files (#48199)

commit a67709e7f4edd11369eed6d8e60d5fc99a13df19
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 22:45:12 2025 +0000

    Update dependencies from https://github.com/dotnet/fsharp build 20250407.2

    Microsoft.SourceBuild.Intermediate.fsharp , Microsoft.FSharp.Compiler
     From Version 9.0.300-beta.25181.1 -> To Version 9.0.300-beta.25207.2

commit f922dd9429a1d4d67452ac1fb660595f86f0e13f
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 15:17:28 2025 -0700

    [main] Update dependencies from dotnet/windowsdesktop (#48230)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit c98e95f79b6f87169aef22d538c4b5e6be4d85bd
Author: Ella Hathaway <[email protected]>
Date:   Mon Apr 7 15:12:12 2025 -0700

    Ignore .dwarf files in signing validation (#48229)

commit 554683873144b25876ee21a9ee58b11716af41c1
Author: Nikola Milosavljevic <[email protected]>
Date:   Mon Apr 7 14:32:28 2025 -0700

    Publish scenario-tests logs for installer tests (#48227)

commit e579a1066a652f99171c34a408f6a13b30adbd88
Merge: 99fe7ae6da 022df31dc5
Author: Forgind <[email protected]>
Date:   Mon Apr 7 13:22:28 2025 -0700

    [automated] Merge branch 'release/9.0.3xx' => 'main' (#48150)

commit 263ea56aff144e9706eef004422351a9c15afeb9
Author: Michael Yanni <[email protected]>
Date:   Mon Apr 7 11:55:19 2025 -0700

    Clean up inclusion of the resx files. Add default namespace for dotnet-sln.Tests.csproj.

commit 99fe7ae6da32b346e78148cb388930db83983f42
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 18:18:20 2025 +0000

    [main] Update dependencies from dotnet/windowsdesktop (#48228)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 022df31dc57d4530e945676c203e632134f9053c
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Mon Apr 7 10:26:29 2025 -0700

    Restore sln-add Program.cs

commit f2dca3cecf7561f04ea1ab32037b0fe7652111e3
Author: Wenwen <[email protected]>
Date:   Mon Apr 7 15:45:51 2025 +0000

    Keep artifact directory (#48218)

commit 9dccc36b23b3436041df67ffcd1e8d236d0db619
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 17:08:23 2025 +0200

    [main] Update dependencies from dotnet/razor (#48222)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 83ea5d33a252703cb8a149eb577b50fa3b9c2188
Author: .NET Source-Build Bot <[email protected]>
Date:   Mon Apr 7 09:57:06 2025 -0500

    Update Source-Build License Scan Baselines and Exclusions (#48223)

commit 611c6559fd353cf1bb43f942edca22668a3e9249
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 14:41:38 2025 +0000

    [main] Update dependencies from dotnet/templating (#48221)

    [main] Update dependencies from dotnet/templating

commit 3306791bf1aafe0934cb924fcb39c8f1b5534478
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 15:59:59 2025 +0200

    [main] Update dependencies from dotnet/windowsdesktop (#48217)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit c9afef11f78b5e5fa4c9725ef873323178830474
Author: Javier Calvarro Nelson <[email protected]>
Date:   Mon Apr 7 15:30:32 2025 +0200

    [StaticWebAssets] Additional endpoints were incorrectly being passed to consuming projects during publish (#48224)

    There was a typo, and the wrong item group was being used to compute the referenced project endpoints

commit b6698db12038ff1cb03a25f6174cd24c38ded2b6
Author: Jakub Jareš <[email protected]>
Date:   Mon Apr 7 13:58:11 2025 +0200

    Fix incorrect index in MSTest template (#48168)

commit a783199e8bd988c1a35e5d7abfa6ff9b3038d980
Author: Jakub Jareš <[email protected]>
Date:   Mon Apr 7 13:57:48 2025 +0200

    [release/9.0.3xx] Open Test1.cs in Visual Studio, not MSTestSettings.cs (#48167)

commit c7c6caab6e06c0be2b0d867997caf182a990cad8
Merge: b1df628b51 31b7ec50c5
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 10:11:18 2025 +0000

    [main] Update dependencies from dotnet/templating (#48206)

commit b1df628b51edc04b3ff571f7e6fe9e2331f34106
Merge: 9b0d725c8b 4ac9ac8562
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 09:23:00 2025 +0000

    [main] Update dependencies from dotnet/deployment-tools (#48210)

commit 9b0d725c8bbe7b98027e22c02583c86d1acef189
Merge: 546b8511da fead463309
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 08:49:41 2025 +0000

    [main] Update dependencies from microsoft/testfx (#48215)

commit 546b8511da8462a09ad7888c456c7632863f905d
Merge: 9d75e4cc41 58ff23efbd
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 08:49:22 2025 +0000

    [main] Update dependencies from dotnet/arcade (#48211)

commit ead71e54376b100623e625d6e8dfc44d783adba9
Author: Jason Zhai <[email protected]>
Date:   Mon Apr 7 01:47:36 2025 -0700

    Revert the changes made to the directory files under eng

commit 12d34eda9e60ba08f098a257cb2bd629d8e8961f
Merge: 658ae15437 9d75e4cc41
Author: Jason Zhai <[email protected]>
Date:   Mon Apr 7 01:42:29 2025 -0700

    Merge branch 'main' of https://github.com/dotnet/sdk into merge/release/9.0.3xx-to-main

commit 31b7ec50c53d1431924b1acd77228107ec89740c
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 07:55:02 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250406.8

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Authoring.TemplateVerifier , Microsoft.TemplateEngine.Edge , Microsoft.TemplateEngine.Mocks , Microsoft.TemplateEngine.Orchestrator.RunnableProjects , Microsoft.TemplateEngine.TestHelper , Microsoft.TemplateEngine.Utils , Microsoft.TemplateSearch.Common , Microsoft.TemplateSearch.TemplateDiscovery
     From Version 10.0.100-preview.4.25203.6 -> To Version 10.0.100-preview.4.25206.8

commit 24a76c35519a687735722f2786914f925a002e7a
Merge: db40e8a3eb 658ae15437
Author: Jason Zhai <[email protected]>
Date:   Sun Apr 6 22:51:41 2025 -0700

    Merge branch 'release/9.0.3xx' of https://github.com/dotnet/sdk into merge/release/9.0.2xx-to-release/9.0.3xx

commit 658ae1543760a3bc75c924478e8fd1b1af00eac7
Merge: 9e9ab2ab5f dc26611c6c
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 05:48:45 2025 +0000

    [release/9.0.3xx] Update dependencies from dotnet/templating (#48204)

commit db40e8a3eb32694623c2d19af1891c400daf8cf0
Merge: ed37618364 fab6c77f73
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 05:48:19 2025 +0000

    [release/9.0.2xx] Update dependencies from dotnet/templating (#48205)

commit fead463309e1b592e3c7ebbd712ce3bceecfb88b
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 05:03:16 2025 +0000

    Update dependencies from https://github.com/microsoft/testfx build 20250405.1

    Microsoft.Testing.Platform , MSTest
     From Version 1.7.0-preview.25204.5 -> To Version 1.7.0-preview.25205.1

commit 58ff23efbde233345325893d335b49655667596b
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 05:03:02 2025 +0000

    Update dependencies from https://github.com/dotnet/arcade build 20250406.1

    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions
     From Version 10.0.0-beta.25204.12 -> To Version 10.0.0-beta.25206.1

commit 4ac9ac856215b25e1218c344fe4f399b5c4dd06f
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 05:02:04 2025 +0000

    Update dependencies from https://github.com/dotnet/deployment-tools build 20250331.1

    Microsoft.SourceBuild.Intermediate.deployment-tools , Microsoft.Deployment.DotNet.Releases
     From Version 9.0.0-preview.1.25177.1 -> To Version 9.0.0-preview.1.25181.1

commit 227dcf49ca3ee156b735c50afe5b94705d1bf1e1
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 02:36:54 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250406.2

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Authoring.TemplateVerifier , Microsoft.TemplateEngine.Edge , Microsoft.TemplateEngine.Mocks , Microsoft.TemplateEngine.Orchestrator.RunnableProjects , Microsoft.TemplateEngine.TestHelper , Microsoft.TemplateEngine.Utils , Microsoft.TemplateSearch.Common , Microsoft.TemplateSearch.TemplateDiscovery
     From Version 10.0.100-preview.4.25203.6 -> To Version 10.0.100-preview.4.25206.2

commit fab6c77f7329965b7a71f11b3645586750176a7c
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 02:31:43 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250406.7

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks
     From Version 9.0.204-servicing.25203.4 -> To Version 9.0.204-servicing.25206.7

commit dc26611c6ce655d5a89532e75c06aee53fd9de61
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 02:14:01 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250406.1

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks
     From Version 9.0.300-preview.25203.5 -> To Version 9.0.300-preview.25206.1

commit 9e9ab2ab5f1255a96d7a86c4a8bd2092bec97781
Merge: 5415c93de3 629ace85ab
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 00:58:21 2025 +0000

    [release/9.0.3xx] Update dependencies from dotnet/arcade (#48197)

commit 9d75e4cc419c047cd8c6de205e0addc7e6f466bc
Merge: e0e0bf2681 14ea109fce
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 00:57:44 2025 +0000

    [main] Update dependencies from microsoft/testfx (#48201)

commit e0e0bf268140f3eea00637e0e122764f4f0a6191
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 18:12:26 2025 +0000

    [main] Update dependencies from dotnet/arcade (#48188)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Alexander Köplinger <[email protected]>

commit 9ed5a0cc5db9a1451cd3ed76adf8847373769871
Merge: 164427d6c1 0f8ec2a00d
Author: Michael Yanni <[email protected]>
Date:   Sun Apr 6 09:36:41 2025 -0700

    Merge branch 'main' into CliResxFileCleanup

commit 0f8ec2a00d3e841c2867ed2c41ac3f30d6af8cab
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 14:16:14 2025 +0000

    [main] Update dependencies from dotnet/razor (#48173)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Viktor Hofer <[email protected]>

commit a27a21d9f18760bb4c83da1941170859ca62e7ac
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 14:04:05 2025 +0200

    [main] Update dependencies from dotnet/source-build-reference-packages (#48189)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit f2dd5598b8cf7cf60c153051b7e90cd4e1d1c713
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 08:37:48 2025 +0000

    [main] Update dependencies from dotnet/windowsdesktop (#48198)

    [main] Update dependencies from dotnet/windowsdesktop

commit 229149ebdc2c69c04ae8dded6c35f681a0a526fb
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 09:32:36 2025 +0200

    [main] Update dependencies from dotnet/msbuild (#48190)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 14ea109fcedfc745b7b020e8c87beaba268a202b
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 05:02:04 2025 +0000

    Update dependencies from https://github.com/microsoft/testfx build 20250404.5

    Microsoft.Testing.Platform , MSTest
     From Version 1.7.0-preview.25204.3 -> To Version 1.7.0-preview.25204.5

commit 7f5a377189fe197f7009181a3ef75b5cf7cb7cf4
Author: Youssef Victor <[email protected]>
Date:   Sun Apr 6 04:27:37 2025 +0200

    Simplify logic around _MTPBuild target (#48097)

commit 164427d6c16b6c15e5507efb5f6ef0d5eaa019db
Author: Michael Yanni <[email protected]>
Date:   Sat Apr 5 12:09:19 2025 -0700

    Extra stray spaces were removed when the strings were moved to the new resx file, so the test results needed updated. Minor adjustments to test file syntax.

commit b69951559785cbfa9b05162e96be368bb8781a10
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sat Apr 5 11:54:06 2025 -0700

    [main] Update dependencies from microsoft/testfx (#48194)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 8920b802c7aefb9192c088bcd65c64e655dd1e0a
Author: Rick Anderson <[email protected]>
Date:   Sat Apr 5 08:53:26 2025 -1000

    Update README.md (#48187)

commit 271ed2c9068424d33988780e2fa56a0d572d4a40
Merge: 23209c40cc 87fd0c87fb
Author: Michael Yanni <[email protected]>
Date:   Sat Apr 5 10:12:53 2025 -0700

    Merge branch 'main' into CliResxFileCleanup

commit 87fd0c87fb6dddb180555bfd36578f83db70c5d4
Author: Viktor Hofer <[email protected]>
Date:   Sat Apr 5 11:05:11 2025 +0200

    Make some targets in redist incremental (#48102)

commit 23209c40ccd650d8a34d7b1c41385380e53886e9
Author: Michael Yanni <[email protected]>
Date:   Sat Apr 5 01:07:21 2025 -0700

    Renamed the Commands LocalizableStrings.resx to CliCommandStrings.resx. Fixed uses to no longer require any namespace differentiation.

commit 8498299dc8c98d91805d3ebe3a73f95cf19c2af0
Author: Michael Yanni <[email protected]>
Date:   Sat Apr 5 00:22:21 2025 -0700

    Renamed CommonLocalizableStrings.resx to CliStrings.resx.

commit 8a8792d4f2d19b4f161f2e807a75c35676d842b5
Author: Michael Yanni <[email protected]>
Date:   Fri Apr 4 23:51:02 2025 -0700

    Moved the Commands strings into a new LocalizableStrings.resx in the Commands folder. Fixed namespaces for various files that were never correctly adjusted. Fixed various license headers. Fixed various using statements.

commit 629ace85ab7ec1409eb2b9960889ab8ad1624f78
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sat Apr 5 05:02:50 2025 +0000

    Update dependencies from https://github.com/dotnet/arcade build 20250404.5

    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions
     From Version 9.0.0-beta.25164.2 -> To Version 9.0.0-beta.25204.5

commit 2c6b3798bdf61ee894afd104cfa13623933fa8d1
Author: Michael Yanni <[email protected]>
Date:   Fri Apr 4 20:38:54 2025 -0700

    Moved the non-Commands strings into the CommonLocalizableStrings.resx.

commit 9a2c6381f46567ced14f7b092640b2108c53cf5f
Author: Michael Yanni <[email protected]>
Date:   Fri Apr 4 19:39:19 2025 -0700

    Removed unused strings from dotnet project resx files.

commit 70d4f959161ad4c7de7177b73b3e7de7635fc3cf
Author: Youssef Victor <[email protected]>
Date:   Sat Apr 5 03:49:52 2025 +0200

    Basic support for launchSettings in the new dotnet test (#48063)

    Co-authored-by: Amaury Levé <[email protected]>

commit da240af6453b6081b8e469673a25d78a119feb70
Author: Michael Yanni <[email protected]>
Date:   Fri Apr 4 18:35:23 2025 -0700

    Renamed all duplicate string names in dotnet resx files.

commit f62c32fc6fbf328d40efa9f85ab47fd59c0514a8
Merge: 98365091a6 8b71405d53
Author: Joel Verhagen <[email protected]>
Date:   Fri Apr 4 19:29:34 2025 -0400

    Allow additional package types with PackAsTool (#48039)

    Resolves https://github.com/NuGet/Home/issues/14220

commit 98365091a689926d8f193d28038ca7798bd42233
Author: Rick Anderson <[email protected]>
Date:   Fri Apr 4 13:14:28 2025 -1000

    Update package-table.md (#48186)

commit 5415c93de307de7d15587a88932fa0baf49cfc46
Author: Forgind <[email protected]>
Date:   Fri Apr 4 16:10:38 2025 -0700

    Hide stack on WorkloadResolver constructor error (#38091)

commit 0f8862f1f19e21bd2bab622fd02c5c6f4a78baa7
Author: Jakub Jareš <[email protected]>
Date:   Sat Apr 5 00:27:32 2025 +0200

    Auto enable retry when detected (#48142)

commit ed37618364b9b4b1831e1963d6d14b44da9d3dbf
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 15:23:11 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/arcade (#48180)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit fd3007eed6b00e005cab0a6704d3ffea3c37281a
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 15:22:48 2025 -0700

    [main] Update dependencies from dotnet/windowsdesktop (#48183)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 8b71405d53ca3260422c25e369aba3102ded0fab
Author: Joel Verhagen <[email protected]>
Date:   Fri Apr 4 17:24:42 2025 -0400

    Feedback: move common condition to PropertyGroup

commit 2524b46d1552cfe2a5562571a0dffe91dadb3583
Author: Joel Verhagen <[email protected]>
Date:   Fri Apr 4 16:38:08 2025 -0400

    Fix test name

commit aa5694ef4888e64a257baaf3332c727cd3cc3cb1
Author: Joel Verhagen <[email protected]>
Date:   Fri Apr 4 16:36:27 2025 -0400

    Add tests

commit b35e5435e38650407fffe74cfdc768e825fc7de7
Author: Javier Calvarro Nelson <[email protected]>
Date:   Fri Apr 4 21:38:02 2025 +0200

    [StaticWebAsset] Fix label not being correctly updated and add a unit test (#48171)

commit 97de8903df230b04fdb7a2f209e3cdc6c7b7f968
Merge: af0dae73d4 99ba06e203
Author: Marc Paine <[email protected]>
Date:   Fri Apr 4 09:23:19 2025 -0700

    [release/9.0.3xx] Update dependencies from microsoft/vstest (#48165)

commit 88351502581d6d5e5bb6e824baebe93f075e3860
Author: Nikola Milosavljevic <[email protected]>
Date:   Fri Apr 4 08:29:45 2025 -0700

    Do not use live shims for tools packages in VMR (#48153)

commit c70197391a5782a8b3b9140a2e54ac29e599ca00
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:10:26 2025 -0700

    [main] Update dependencies from microsoft/testfx (#48163)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit e43cd8504e214c18ff5aa775a2eeae57107f592a
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:10:05 2025 -0700

    [main] Update dependencies from dotnet/razor (#48157)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 0a279d3a5d3265858471454072bda2de8f2f1e29
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:09:54 2025 -0700

    [main] Update dependencies from dotnet/msbuild (#48160)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 12ef2e53efaf0648ec2ea95729cfd9abccbb49ac
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:09:47 2025 -0700

    [main] Update dependencies from dotnet/windowsdesktop (#48156)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 07cecce0d9113ae9b4d6596e4ee4a8474abb4b2c
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:09:33 2025 -0700

    [main] Update dependencies from dotnet/sourcelink (#48161)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 52100bbcc6bb4431273b78524989e8e3d1be95db
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:09:20 2025 -0700

    [main] Update dependencies from dotnet/arcade (#48159)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit d02c58fc2afa535412adc3e9f83eb2127c16f675
Author: Přemek Vysoký <[email protected]>
Date:   Fri Apr 4 12:46:15 2025 +0200

    Disable synchronization of sourcelink to the VMR (#48166)

commit f975c7a2be827dfe0c5710165024fb00e622a492
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 10:14:00 2025 +0200

    [main] Update dependencies from dotnet/templating (#48081)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit e72b1d73b53e6b0873a9b9845bd25863d93acab3
Author: Jakub Jareš <[email protected]>
Date:   Fri Apr 4 10:02:06 2025 +0200

    Improve MTP dotnet test exit code messages  (#47979)

commit 99ba06e2036781517ef5b0792b9b5b7f8825667f
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 05:02:17 2025 +0000

    Update dependencies from https://github.com/microsoft/vstest build 20250403.1

    Microsoft.SourceBuild.Intermediate.vstest , Microsoft.NET.Test.Sdk , Microsoft.TestPlatform.Build , Microsoft.TestPlatform.CLI
     From Version 17.14.0-preview-25202-02 -> To Version 17.14.0-release-25203-01

commit b23fbb5f566f13ed851023a3e916e01553f1f358
Merge: d934e19458 bce160cae1
Author: Marc Paine <[email protected]>
Date:   Thu Apr 3 16:49:05 2025 -0700

    Update to AwesomeAssertions  (#47611)

commit bce160cae1a65c8a34e7c94c62d43a6fa67a71ab
Author: Marc Paine <[email protected]>
Date:   Thu Apr 3 12:53:52 2025 -0700

    Add signing information for three dlls blocking the vmr build

commit d934e194587bb074cd1820b747bcd63cd6975720
Author: Omair Majid <[email protected]>
Date:   Thu Apr 3 13:39:33 2025 -0400

    Make it possible to prep other RIDs and architectures (#47956)

commit 1b5d5ba80d17c812ba60d4b3e1630acda51c9e00
Author: Javier Calvarro Nelson <[email protected]>
Date:   Thu Apr 3 19:34:16 2025 +0200

    [StaticWebAssets] Optimize StaticWebAsset and StaticWebAssetEndpoint (#47833)

    * Avoid accessing the properties until needed.
    * Reuse the original Task Item if it wasn't modified.
    * Avoid deserializing expensive properties unless needed.
    * Sort endpoint headers/properties/selectors on write.

commit af0dae73d45af88a32ad01c9d9d254c622cb1643
Merge: 5026d90461 cbc5917c2f
Author: Forgind <[email protected]>
Date:   Thu Apr 3 10:25:42 2025 -0700

    [automated] Merge branch 'release/9.0.2xx' => 'release/9.0.3xx' (#48118)

commit f0afd113b2dd5f65412bf9f0c6e0325f1e40f2cb
Author: Marek Fišera <[email protected]>
Date:   Thu Apr 3 19:12:29 2025 +0200

    [StaticWebAssets] Generate Link elements based on StaticWebAssets manifest properties (#47915)

commit 29963843b2f05d7f6282bf4af0c2c3ac36727d0a
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 16:56:04 2025 +0000

    [main] Update dependencies from dotnet/msbuild (#48090)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 0ddd606d60989f6bf5dd7b11ab8d8931e7ebfb3d
Author: Michael Simons <[email protected]>
Date:   Thu Apr 3 09:46:43 2025 -0700

    Fix truncated symbols paths in log output from CreateSdkSymbolsLayout (#48147)

commit 86653daebd020bbd58a12a69bb5326da37b31d99
Author: Matt Mitchell <[email protected]>
Date:   Thu Apr 3 09:41:34 2025 -0700

    Remove duplicated azl cert declarations (#48146)

commit a7788517c9a40fefd2a311de7e94fa5028ad1ce4
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 09:31:59 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/templating (#48139)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 5026d904612f440acd20dacc40d808d7008ebcde
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 09:31:36 2025 -0700

    [release/9.0.3xx] Update dependencies from dotnet/templating (#48137)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 6886ac63af348305dd5621fd7b6101eba60ba8e8
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 09:29:59 2025 -0700

    [release/9.0.3xx] Update dependencies from dotnet/roslyn-analyzers (#48115)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Jason Zhai <[email protected]>

commit 581b46209159ff89c89ac4a9f2a70c6f28b6f0cd
Author: Marc Paine <[email protected]>
Date:   Thu Apr 3 09:14:42 2025 -0700

    Update to the latest application insights (#47924)

    Co-authored-by: Jason Zhai <[email protected]>
    Co-authored-by: Michael Simons <[email protected]>

commit ddda5afa714ebb20d191e6a1a1e0ee390abdbebd
Merge: fb2baf353a a6373af242
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 09:23:54 2025 +0000

    [release/9.0.3xx] Update dependencies from dotnet/roslyn (#48135)

commit 33343859a1a9a1fa171a92af62634fa7d0851638
Merge: 3d618732c3 6bd4517df2
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 09:16:39 2025 +0000

    [main] Update dependencies from dotnet/windowsdesktop (#48136)

commit 3d618732c37f027d499caee6a26a4ad5e88b468a
Author: Jakub Jareš <[email protected]>
Date:   Thu Apr 3 11:13:03 2025 +0200

    Add ux for retry in dotnet test (#48075)

commit 96c0bbaf63a6daa0887307231a0e4da2c6a7da90
Merge: b4adc03f30 0baf410f39
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 08:55:37 2025 +0000

    [release/9.0.2xx] Update dependencies from dotnet/razor (#47819)

commit fb2baf353af560a4408ed07537b7bc6bad3fd60e
Merge: 28a72d7e59 c4a09fc0c0
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 08:54:45 2025 +0000

    [release/9.0.3xx] Update dependencies from microsoft/vstest (#48134)

commit 28a72d7e590bd9193a89f775fceb7d8c44e67519
Merge: 044c7f137c d8b7d19763
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 08:54:03 2025 +0000

    [release/9.0.3xx] Update dependencies from dotnet/razor (#48128)

commit 044c7f137cabcdd27bf6e7831c348722a08386f8
Merge: 2ac5f7cc27 c0ddd1d44d
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 08:52:48 2025 +0000

    [release/9.0.3xx] Update dependencies from nuget/nuget.client (#48117)

commit 33d6c5fa06a7b90ff45d97b554b5c418357644cb
Merge: b77c3846c5 5eed39beb6
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 07:56:26 2025 +0000

    [automated] Merge branch 'release/9.0.3xx' => 'main' (#48098)

commit b77c3846c5d7d9ba594b56c51009673c683a5590
Merge: 59642770a3 d162b7b641
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 07:38:50 2025 +0000

    [main] Update dependencies from dotnet/source-build-reference-packages (#48130)

commit 5eed39beb67421803d402ef2318a51f8a0ca3760
Merge: 2ac5f7cc27 59642770a3
Author: Jason Zhai <[email protected]>
Date:   Thu Apr 3 00:20:57 2025 -0700

    Merge branch 'main' of https://github.com/dotnet/sdk into merge/release/9.0.3xx-to-main

commit cbc5917c2f49ef62ab223506baa1f1f08f5ace75
Merge: b4adc03f30 2ac5f7cc27
Author: Jason Zhai <[email protected]>
Date:   Thu Apr 3 00:18:50 2025 -0700

    Merge branch 'release/9.0.3xx' of https://github.com/dotnet/sdk into merge/release/9.0.2xx-to-release/9.0.3xx

commit 6bd4517df29925b8ed4a36ee0aab9f436d771d4b
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 05:49:51 2025 +0000

    Update dependencies from https://github.com/dotnet/windowsdesktop build 20250402.9

    Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 , VS.Redist.Common.WindowsDesktop.SharedFramework.x64.10.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.10.0
     From Version 10.0.0-preview.4.25202.1 -> To Version 10.0.0-preview.4.25202.9

    Dependency coherency updates

    Microsoft.NET.Sdk.WindowsDesktop,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.DotNet.Wpf.ProjectTemplates
     From Version 10.0.0-preview.4.25202.2 -> To Version 10.0.0-preview.4.25202.6 (parent: Microsoft.WindowsDesktop.App.Ref

commit 59642770a300871cd9f8c157f79ac0273ee54091
Merge: faf463d27e bdd9a3e3d1
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 05:37:23 2025 +0000

    [main] Update dependencies from microsoft/vstest (#48113)

commit a6373af242c458650a130d70cfd8911dfa6c5012
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 05:02:38 2025 +0000

    Update dependencies from https://github.com/dotnet/roslyn build 20250402.5

    Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.PublicApiAnalyzers , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset , Microsoft.Net.Compilers.Toolset.Framework
     From Version 4.14.0-3.25179.1 -> To Version 4.14.0-3.25202.5

commit c4a09fc0c0a76e03c49b83fa70c4d3fc47a30289
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 05:02:32 2025 +0000

    Update dependencies from https://github.com/microsoft/vstest build 20250402.2

    Microsoft.SourceBuild.Intermediate.vstest , Microsoft.NET.Test.Sdk , Microsoft.TestPlatform.Build , Microsoft.TestPlatform.CLI
     From Version 17.14.0-preview-25201-01 -> To Version 17.14.0-preview-25202-02

commit d162b7b641d7b67dd1b5af09cad92c49d28f0da3
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 05:02:12 2025 +0000

    Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20250402.2

    Microsoft.SourceBuild.Intermediate.source-build-reference-packages
     From Version 10.0.618101 -> To Version 10.0.620202

commit d8b7d19763ff18fbeb6bd4de91d608a84171a409
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 05:01:22 2025 +0000

    Update dependencies from https://github.com/dotnet/razor build 20250402.4

    Microsoft.SourceBuild.Intermediate.razor , Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport
     From Version 9.0.0-preview.25201.3 -> To Version 9.0.0-preview.25202.4

commit b4adc03f30da99cb022433ec970b75bea904680c
Merge: 64c106b037 e9e06a3cf3
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 02:03:51 2025 +0000

    [release/9.0.2xx] Update dependencies from dotnet/roslyn (#47666)

commit faf463d27e714a7ae29809907f1fcfaa722b8fb9
Merge: 10ccd43dc0 8e8278109b
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 01:00:36 2025 +0000

    [main] Update dependencies from dotnet/windowsdesktop (#48116)

commit 10ccd43dc07f697f81588ce86bdba44ff852035c
Merge: eab2cab40c 1a0ac47108
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 00:58:22 2025 +0000

    [main] Update dependencies from dotnet/razor (#48123)

commit 64c106b0377f3ed131a8acb0d9a5b2fd613e17e7
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Wed Apr 2 16:02:49 2025 -0700

    sln-add: Get project DefaultProjectTypeGuid (#47661)

    Fixes #47638, #522

    Description and impact
    When adding a new project that is not known for the SDK or MSBuild, it should read the DefaultProjectTypeGuid property from the project file.

    Regression
    Yes - this worked before 9.0.2xx

    Risk
    Low – Currently it errors when adding unknown project types, unless the ProjectTypeGuid is specified on the project itself, or on the solution file.

    Testing
    Unit tests on this were ambiguous, so they were renamed to better match their cases.
    I was also able to reproduce the bug...

commit 993c0734a048e2fea19e507df160088ea415427a
Merge: 477b0ebe24 238424015e
Author: Forgind <[email protected]>
Date:   Wed Apr 2 15:56:00 2025 -0700

    [automated] Merge branch 'release/9.0.1xx' => 'release/9.0.2xx' (#47514)

commit eab2cab40c8731630474c9a7adf0cbc86e70c3b1
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 22:54:18 2025 +0000

    [main] Update dependencies from dotnet/arcade (#48114)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 477b0ebe2439a5d7491db1cafcb909fdc1025509
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 15:46:13 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/msbuild (#47736)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit b2639aa68080713b52c910500d60dab1d06c0230
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 15:42:24 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/roslyn-analyzers (#47814)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 1a0ac471088bf8d32c397c2c05cf215ba4c0bf00
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 22:19:54 2025 +0000

    Update dependencies from https://github.com/dotnet/razor build 20250402.3

    Microsoft.SourceBuild.Intermediate.razor , Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport
     From Version 10.0.0-preview.25202.2 -> To Version 10.0.0-preview.25202.3

commit 163f87c62f0263ee96ec0c842f12541cc599d2fb
Author: Jeremy Koritzinsky <[email protected]>
Date:   Wed Apr 2 16:35:00 2025 -0500

    Publish productVersion.txt for all repos (#48105)

commit c0ddd1d44d9986c54c956e17a2a0dd1e4d2c0058
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 21:01:19 2025 +0000

    Update dependencies from https://github.com/nuget/nuget.client build 6.14.0.102

    Microsoft.Build.NuGetSdkResolver , NuGet.Build.Tasks , NuGet.Build.Tasks.Console , NuGet.Build.Tasks.Pack , NuGet.CommandLine.XPlat , NuGet.Commands , NuGet.Common , NuGet.Configuration , NuGet.Credentials , NuGet.DependencyResolver.Core , NuGet.Frameworks , NuGet.LibraryModel , NuGet.Localization , NuGet.Packaging , NuGet.ProjectModel , NuGet.Protocol , NuGet.Versioning
     From Version 6.13.0-rc.113 -> To Version 6.14.0-preview.1.102

commit d0ab6ed4165431a637e5082910e157ac8bfa4fd4
Author: vseanreesermsft <[email protected]>
Date:   Wed Apr 2 14:00:54 2025 -0700

    Update branding to 9.0.204 (#48111)

commit 8e8278109bd0756dd5db9500791e5b4dd5b34141
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 20:43:28 2025 +0000

    Update dependencies from https://github.com/dotnet/windowsdesktop build 20250402.1

    Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 , VS.Redist.Common.WindowsDesktop.SharedFramework.x64.10.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.10.0
     From Version 10.0.0-preview.4.25201.2 -> To Version 10.0.0-preview.4.25202.1

    Dependency coherency updates

    Microsoft.NET.Sdk.WindowsDesktop,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.DotNet.Wpf.ProjectTemplates
     From Version 10.0.0-preview.4.25201.2 -> To Version 10.0.0-preview.4.25202.2 (parent: Microsoft.WindowsDesktop.App.Ref

commit 59c823dd5f7c7eb0593e20c8ee68aa24ad200d29
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 13:37:28 2025 -0700

    [main] Update dependencies from dotnet/razor (#48106)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit ba5407e49cfb4128e781ea018dd1f8b8f8560e2f
Author: Ella Hathaway <[email protected]>
Date:   Wed Apr 2 12:52:17 2025 -0700

    Improve Post-Build Signing Validation in the VMR (#47744)

commit bdd9a3e3d17e91a7ab08deb362f4320d3ee5ae01
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 18:39:50 2025 +0000

    Update dependencies from https://github.com/microsoft/vstest build 20250402.2

    Microsoft.SourceBuild.Intermediate.vstest , Microsoft.NET.Test.Sdk , Microsoft.TestPlatform.Build , Microsoft.TestPlatform.CLI
     From Version 17.14.0-preview-25202-01 -> To Version 17.14.0-preview-25202-02

commit 4052072260672708d04ee944e20faa07113e55b4
Author: Michael Simons <[email protected]>
Date:   Wed Apr 2 09:43:48 2025 -0700

    Add logic to track SBRP project references in the SBRPUsageReport (#48104)

commit 9b7b3e0ba6e95ed00a404feac336ff60139c4a52
Author: .NET Source-Build Bot <[email protected]>
Date:   Wed Apr 2 11:27:20 2025 -0500

    Update Source-Build SDK Diff Tests Baselines and Exclusions (#48067)

commit 342ad6fb9758d869a0534a303c8130df28182aba
Author: Surayya Huseyn Zada <[email protected]>
Date:   Wed Apr 2 17:39:37 2025 +0200

    Use `dotnet/runtime-deps` images instead of `dotnet/nightly/runtime-deps` for AOT (#48101)

commit 19b1710771240ff2a06b331732b9ecd2e6f8387b
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 08:22:05 2025 -0700

    [main] Update dependencies from microsoft/vstest (#48099)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 687e9810374a90dd1d2bd94d5d6de5c3729f8d22
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 08:21:47 2025 -0700

    [main] Update dependencies from nuget/nuget.client (#48100)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 46028e4a33ea47ffb14b0a3936de4d4b42c4329e
Author: Joel Verhagen <[email protected]>
Date:   Wed Apr 2 10:56:43 2025 -0400

    Prepend DotnetTool

commit 81843b5fa36fe714b152a17a75751e0b51734e36
Merge: d93edb7f69 27406ad2ed
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 10:08:40 2025 +0000

    [main] Update dependencies from dotnet/sourcelink (#48091)

commit 2ac5f7cc279cab880f4a2aa80a2137e8b2f30085
Merge: d6e1f61ccc 47aebc0342
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 10:07:52 2025 +0000

    [release/9.0.3xx] Update dependencies from microsoft/vstest (#48093)

commit d93edb7f69245ba0d7b5b6008b90e8f37dcdaf0c
Merge: b35889907e 3bf8caf53d
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 09:35:18 2025 +0000

    [automated] Merge branch 'release/9.0.3xx' => 'main' (#48096)

commit 3bf8caf53d6f8c55734a6d7538549b49496a3f5e
Merge: d6e1f61ccc b35889907e
Author: Jason Zhai <[email protected]>
Date:   Wed Apr 2 09:34:15 2025 +0000

    Merge branch 'main' of https://github.com/dotnet/sdk into merge/release/9.0.3xx-to-main

commit b35889907e10982cbf69fb67bf9651fbc9ac3e72
Author: Nikola Milosavljevic <[email protected]>
Date:   Wed Apr 2 01:00:46 2025 -0700

    Reuse specific job artifacts in installer test jobs (#48074)

commit abcecd9504d671c8dcfaf852b38f6473706bd8a2
Merge: 6737449899 f2a10c9a6a
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 07:58:15 2025 +0000

    [main] Update dependencies from dotnet/windowsdesktop (#48094)

commit d6e1f61cccabc3426c10d1d245085a411391a77d
Merge: d1bbcda688 dd5055f590
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 07:55:32 2025 +0000

    [release/9.0.3xx] Update dependencies from dotnet/razor (#48089)

commit 6737449899102028a2d61b8e77fd910bd36199f0
Merge: 34908d497a be6a5e0abf
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 07:50:52 2025 +0000

    [main] Update dependencies from nuget/nuget.client (#48064)

commit 34908d497a508cbdf1dc4416a3bfc0a7495c0987
Merge: cbb8f75623 4b6e4fbea5
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 07:37:34 2025 +0000

    [main] Update dependencies from microsoft/testfx (#48092)

commit f2a10c9a6ab75404c8417f4c9699af2ac9883e76
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 05:46:42 2025 +0000

    Update dependencies from https://github.com/dotnet/windowsdesktop build 20250401.2

    Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 , VS.Redist.Common.WindowsDesktop.SharedFramework.x64.10.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.10.0
     From Version 10.0.0-preview.4.25201.1 -> To Version 10.0.0-preview.4.25201.2

commit 47aebc0342535509e99ae997d6bf923749d2b868
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 05:02:12 2025 +0000

    Update dependencies from https://github.com/microsoft/vstest build 20250401.1

    Microsoft.SourceBuild.Intermediate.vstest , Microsoft.NET.Test.Sdk , Microsoft.TestPlatform.Build , Microsoft.TestPlatform.CLI
     From Version 17.14.0-preview-25181-02 -> To Version 17.14.0-preview-25201-01

commit 4b6e4fbea5489ec83131f9ba133df06b992c6c0f
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 05:02:06 2025 +0000

    Update dependencies from https://github.com/microsoft/testfx build 20250401.1

    Microsoft.Testing.Platform , MSTest
     From Version 1.7.0-preview.25181.5 -> To Version 1.7.0-preview.25201.1

commit 27406ad2ed21d8bab46294a22cd0942bcaabf86b
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 05:01:53 2025 +0000

    Update dependencies from https://github.com/dotnet/sourcelink build 20250401.1

    Microsoft.SourceBuild.Intermediate.sourcelink , Microsoft.Build.Tasks.Git , Microsoft.SourceLink.AzureRepos.Git , Microsoft.SourceLink.Bitbucket.Git , Microsoft.SourceLink.Common , Microsoft.SourceLink.GitHub , Microsoft.SourceLink.GitLab
     From Version 10.0.0-beta.25181.2 -> To Version 10.0.0-beta.25201.1

commit dd5055f590ab26b903fdf03424301f3d2a2b560e
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 05:01:38 2025 +0000

    Update dependencies from https://github.com/dotnet/razor build 20250401.3

    Microsoft.SourceBuild.Intermediate.razor , Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport
     From Version 9.0.0-preview.25181.5 -> To Version 9.0.0-preview.25201.3

commit ca5b062a52c063f8ebe67595f9457693ee351c48
Merge: 2442ba1cd8 dfee875a8c
Author: Forgind <[email protected]>
Date:   Tue Apr 1 15:30:10 2025 -0700

    Merge branch 'main' into marcpopMSFT-updatetoAAmain

commit be6a5e0abf430f41dc54d12f9ec7ece6c4f3d280
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 1 11:19:57 2025 +0000

    Update dependencies from https://github.com/nuget/nuget.client build 6.14.0.99

    Microsoft.Build.NuGetSdkResolver , NuGet.Build.Tasks , NuGet.Build.Tasks.Console , NuGet.Build.Tasks.Pack , NuGet.CommandLine.XPlat , NuGet.Commands , NuGet.Common , NuGet.Configuration , NuGet.Credentials , NuGet.DependencyResolver.Core , NuGet.Frameworks , NuGet.LibraryModel , NuGet.Localization , NuGet.Packaging , NuGet.ProjectModel , NuGet.Protocol , NuGet.Versioning
     From Version 6.14.0-preview.1.97 -> To Version 6.14.0-preview.1.99

commit 45d4b51987a5b88309f78ef8bd258a595b4387f9
Author: Joel Verhagen <[email protected]>
Date:   Mon Mar 31 16:14:00 2025 -0400

    Only set DotnetTool package type if no package type is set

commit 2442ba1cd83cd6dddd25e75faf88d64149252aa5
Author: Marc Paine <[email protected]>
Date:   Tue Mar 25 17:44:57 2025 -0700

    Update the test to not pass in an empty string to the havestderr check

commit 6cd871d98cd8b730f360a506813ed0623f0d4e40
Author: Marc Paine <[email protected]>
Date:   Fri Mar 21 16:28:59 2025 -0700

    Fix file path handling in assertions to limit to the current directory

commit ffeff0a963e85095975059ca9e38a0360108e9ae
Author: Marc Paine <[email protected]>
Date:   Thu Mar 20 15:36:38 2025 -0700

    Instead of creating a new directory and file object with an empty string, I use the input string. This allows us to have the object exist and won't throw null exceptions but will result in correct .Exists calls.

commit 48a12242a31f710101eadd8e09ec9c5571afee0e
Author: Marc Paine <[email protected]>
Date:   Tue Mar 18 11:17:00 2025 -0700

    Fix typo

    Co-authored-by: Chris Sienkiewicz <[email protected]>

commit 942757cb8a869befc20ddb93e3909e77e50b9c0d
Author: Marc Paine <[email protected]>
Date:   Tue Mar 18 11:08:35 2025 -0700

    Make the CommandAssertions null checks match the fluent assertions pattern

commit c39df9b518cfaa588d5eb7c29eba02352ad54626
Author: Marc Paine <[email protected]>
Date:   Tue Mar 18 11:08:30 2025 -0700

    Remove AwesomeAssertions from the unittest.proj

commit 3d23dbc8bc05bce077287f3bf184d5f96845f0fa
Author: Marc Paine <[email protected]>
Date:   Fri Mar 14 11:13:15 2025 -0700

    Fix some additional issues that weren't resolved in the merge conflict
    Handle some nullability

commit 12c9bdd9304ade763e9b97452b747491af207f3e
Author: Marc Paine <[email protected]>
Date:   Thu Mar 13 16:59:55 2025 -0700

    Switch to AwesomeAssertion 8.0.2
    Remove test packages from signing
    Include the AwesomeAssertion in the test directory.build.props to simplify most test project files
    Fix all of the old Fluent format constraints

commit 0baf410f391966bd6e0b0e577049dfcb6ce14e9f
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Mar 25 20:10:29 2025 +0000

    Update dependencies from https://github.com/dotnet/razor build 20250325.7

    Microsoft.SourceBuild.Intermediate.razor , Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport
     From Version 9.0.0-preview.25123.6 -> To Version 9.0.0-preview.25175.7

commit e9e06a3cf3fe9442d0c9706347c3eaef32e6d976
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Mar 23 10:33:52 2025 +0000

    Update dependencies from https://github.com/dotnet/roslyn build 20250323.11

    Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset , Microsoft.Net.Compilers.Toolset.Framework
     From Version 4.13.0-3.25155.17 -> To Version 4.13.0-3.25173.11

commit 6bc0803c31a406bfea2786c1aae41223c6fa3331
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Mar 23 09:29:06 2025 +0000

    Update dependencies from https://github.com/dotnet/razor build 20250323.1

    Microsoft.SourceBuild.Intermediate.razor , Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport
     From Version 9.0.0-preview.25123.6 -> To Version 9.0.0-preview.25173.1

commit 595e0f35ad9b0f1e19c18ef8df0de4161d13bf60
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Mar 17 20:19:10 2025 +0000

    Update dependencies from https://github.com/dotnet/roslyn build 20250317.3

    Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset , Microsoft.Net.Compilers.Toolset.Framework
     From Version 4.13.0-3.25155.17 -> To Version 4.13.0-3.25167.3

commit 673eb374a40ab16fd4cfefe913844ab1cd9ff803
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Mar 14 08:25:34 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/arcade (#47599)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit adcff4d773a6721e71d0286e5ec498fdb8921c40
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Mar 14 09:16:09 2025 +0000

    [release/9.0.2xx] Update dependencies from dotnet/scenario-tests (#47552)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Eduardo Villalpando Mello <[email protected]>

commit 238424015e8df08aa3c0542dab24e233d2942844
Merge: 5c73e608dc 2a74fc2c4a
Author: Jason Zhai <[email protected]>
Date:   Thu Mar 13 22:54:17 2025 -0700

    Merge branch 'release/9.0.2xx' of https://github.com/dotnet/sdk into merge/release/9.0.1xx-to-release/9.0.2xx

commit 2a74fc2c4a3a4f6675665ed1e162bc6472fed151
Merge: c69b63057c b2beed3a97
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 15:10:46 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/arcade (#47518)

commit b2beed3a9726c9e334574e5b0ce1e2c6247e58e4
Merge: 2282faf023 c69b63057c
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 14:06:03 2025 -0700

    Merge branch 'release/9.0.2xx' into darc-release/9.0.2xx-8e1cedf9-4132-4195-8761-b30cc503d474

commit c69b63057cbf1eb3b3f826678ab14895f9acb94d
Merge: 1c2c22ee80 4f95e5f6d8
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 13:48:26 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/templating (#47528)

commit 4f95e5f6d82b66f2ee1edf24e54a0e5b21783bf8
Merge: 68f5df9ddc 1c2c22ee80
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 11:02:21 2025 -0700

    Merge branch 'release/9.0.2xx' into darc-release/9.0.2xx-794ff35a-9def-4dfa-8c1b-f6b711ffb9ed

commit 2282faf0239fc50012a27bdf2b474963fe7bf385
Merge: dc2cb5b547 1c2c22ee80
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 11:00:48 2025 -0700

    Merge branch 'release/9.0.2xx' into darc-release/9.0.2xx-8e1cedf9-4132-4195-8761-b30cc503d474

commit 1c2c22ee8077556a391a4eb2d1f0ec7ebcddb393
Merge: b2333f6f41 082bcded34
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 10:11:46 2025 -0700

    [release/9.0.2xx] Update GivenThatWeWantMSBuildToRespectCustomCulture.cs (#47553)

commit 082bcded3473234c94b9ab8e67fadbf5d7bdbb02
Author: Viktor Hofer <[email protected]>
Date:   Thu Mar 13 15:16:11 2025 +0100

    Update GivenThatWeWantMSBuildToRespectCustomCulture.cs

    Fixes failing `SupportRespectAlreadyAssignedItemCulture_IsNotSupported_BuildShouldFail` test by consolidating back with the core only test theory.

    This is causing all PRs in sdk main to fail because of a machine rollout that updated VS to 17.13.x

commit 68f5df9ddc5457cbe68b7b9c2c0965186dbc1b9f
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Mar 13 10:27:46 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250313.4

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks
     From Version 9.0.203-servicing.25156.14 -> To Version 9.0.203-servicing.25163.4

commit 5c73e608dcf7bc321423eea55f7f7a8fdfe8036c
Merge: 8ca1f412b9 b2333f6f41
Author: Jason Zhai <[email protected]>
Date:   Thu Mar 13 00:56:12 2025 -0700

    Merge branch 'release/9.0.2xx' of https://github.com/dotnet/sdk into merge/release/9.0.1xx-to-release/9.0.2xx

commit 395793727c2d9d072d22e95034a7bb5b905e71ba
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Mar 13 03:25:22 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250312.4

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks
     From Version 9.0.203-servicing.25156.14 -> To Version 9.0.203-servicing.25162.4

commit b2333f6f41b3fe3d9a08dc6b4c55ff4c35dd2c9c
Merge: 4455c5a1ae a8b7dc58d0
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Wed Mar 12 16:16:08 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/msbuild (#47511)

commit dc2cb5b547d6fb718edc82cba7b0a1aed55bf51a
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Mar 12 21:46:54 2025 +0000

    Update dependencies from https://github.com/dotnet/arcade build 20250311.4

    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions
     From Version 9.0.0-beta.25111.5 -> To Version 9.0.0-beta.25161.4

commit 8ca1f412b98857fb03e39fc45008feda47c666c1
Author: .NET Source-Build Bot <[email protected]>
Date:   Wed Mar 12 16:46:35 2025 -0500

    .NET Source-Build 9.0.104 March 2025 Updates (#47466)

    Co-authored-by: Nikola Milosavljevic <[email protected]>

commit 2f3a515827610a95a8cfceba780f378293c9bec4
Merge: 464fd7a20e 83dc5137f1
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Wed Mar 12 10:15:58 2025 -0700

    [automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx' (#47498)

commit a8b7dc58d01dc048da3071f0a0bc2a56d05138d4
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Mar 12 16:21:55 2025 +0000

    Update dependencies from https://github.com/dotnet/msbuild build 20250312.14

    Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build , Microsoft.Build.Localization
     From Version 17.13.19-preview-25128-01 -> To Version 17.13.20-preview-25162-14

commit 83dc5137f120715fb34732e0670db85c232b083b
Merge: 3bb3874792 464fd7a20e
Author: Jason Zhai <[email protected]>
Date:   Wed Mar 12 02:06:24 2025 -0700

    Merge branch 'release/9.0.1xx' of https://github.com/dotnet/sdk into merge/release/8.0.4xx-to-release/9.0.1xx

commit 3bb3874792b34a7e5210fd0cc20092c6adc4a3bf
Merge: a34e2ef49c a1d68523e2
Author: v-wuzhai <[email protected]>
Date:   Wed Mar 12 01:54:51 2025 -0700

    [automated] Merge branch 'release/8.0.3xx' => 'release/8.0.4xx' (#47476)

commit 4455c5a1aee4248bf42a08a6539e1e1d6c2899ff
Merge: d1c4c2a577 1d4c4184fb
Author: v-wuzhai <[email protected]>
Date:   Wed Mar 12 01:53:14 2025 -0700

    [automated] Merge branch 'release/9.0.1xx' => 'release/9.0.2xx' (#47490)

commit 464fd7a20e71535a4878a68d7c684de87901bb6f
Merge: 1b40c2acb1 7082d2b6df
Author: v-wuzhai <[email protected]>
Date:   Wed Mar 12 01:04:00 2025 -0700

    [automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx' (#47477)

commit a1d68523e2b0e0869b4f05f76a7e7f9893ac10d1
Merge: b3e9800810 a34e2ef49c
Author: Jason Zhai <[email protected]>
Date:   Wed Mar 12 00:23:42 2025 -0700

    Merge branch 'release/8.0.4xx' of https://github.com/dotnet/sdk into merge/release/8.0.3xx-to-release/8.0.4xx

commit b3e98008105c152ace8d301490c1435c6f447ac9
Merge: 48f8744c63 1d7dc21b89
Author: v-wuzhai <[email protected]>
Date:   Wed Mar 12 00:13:03 2025 -0700

    [automated] Merge branch 'release/8.0.1xx' => 'release/8.0.3xx' (#47457)

commit 1d4c4184fb312d636776b3e47a429cda3439a723
Merge: 1b40c2acb1 d1c4c2a577
Author: Jason Zhai <[email protected]>
Date: …
edvilme added a commit to edvilme/sdk that referenced this pull request Apr 8, 2025
commit 96aa638531dc11dec5670d34dae05fb4e413157a
Author: Alexander Köplinger <[email protected]>
Date:   Tue Apr 8 18:37:40 2025 +0200

    Add workloads build (#47225)

    This builds the emsdk and runtime workload manifests here instead of the original repos. It also adds the VS insertion .zip creation which is only built in the official build by default.

    Closes https://github.com/dotnet/source-build/issues/3904

commit e20d672fcf93502f8a1b88b491488753d069b6ad
Author: Viktor Hofer <[email protected]>
Date:   Tue Apr 8 18:12:09 2025 +0200

    Delete src/SourceBuild/patches/aspire/0001-Only-add-msi-in-Signing.patch (#48258)

commit 6da664a4da8de269fa1403c5f1677b2c73936486
Author: Viktor Hofer <[email protected]>
Date:   Tue Apr 8 18:06:52 2025 +0200

    Delete src/SourceBuild/patches/aspire/0001-Only-add-msi-in-Signing.patch (#48258)

commit 10bd7f4c9c103a675a485e8bb17d75c63951a222
Author: Ella Hathaway <[email protected]>
Date:   Tue Apr 8 08:54:45 2025 -0700

    Exclude dotnet*.js files from signing-validation (#48233)

commit da4d52fd7b707fe88a99bfa4b507ef3306b110ba
Author: Jan Jones <[email protected]>
Date:   Tue Apr 8 17:49:14 2025 +0200

    Use global temp directory for run file outputs (#48169)

commit a7c3088fb6d27752549a34349c14918b0f340a43
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 15:26:18 2025 +0000

    [main] Update dependencies from dotnet/msbuild (#48251)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Viktor Hofer <[email protected]>

commit 63a556a65da1adc8633f3181de50cedb282d819c
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 14:59:28 2025 +0000

    [main] Update dependencies from dotnet/aspnetcore (#48087)

    [main] Update dependencies from dotnet/aspnetcore

     - Merge branch 'main' into darc-main-94c766ae-c755-4c4b-b205-09ac43b8ec84

     - Delete src/SourceBuild/patches/aspnetcore/0001-IDE0031-fixes.patch

commit 95df8293bd3b284e6870129eae5386d0744e6e74
Author: Matt Mitchell <[email protected]>
Date:   Tue Apr 8 07:31:11 2025 -0700

    Sign and harden pkgs (#47996)

commit bf923229d5419bac494c4ead378a3736d43a0f20
Author: .NET Source-Build Bot <[email protected]>
Date:   Tue Apr 8 07:48:34 2025 -0500

    Re-Bootstrap Source Build to .NET 10.0.100-preview.4.25203.1 (#48226)

    Co-authored-by: Nikola Milosavljevic (CLR) false <[email protected]>
    Co-authored-by: Viktor Hofer <[email protected]>

commit 09f2446354bcd538bf4587f2976085e350cdcd62
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 05:13:19 2025 -0700

    [main] Update dependencies from dotnet/windowsdesktop (#48244)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit bdf58337fe6b4a4aae9d990a46c02fa381a798b5
Author: Přemek Vysoký <[email protected]>
Date:   Tue Apr 8 12:49:41 2025 +0200

    Remove `testfx` from VMR source mappings (#48225)

commit 569fffca3902675b44d5cb5f7e77f83ec6a9397e
Author: Viktor Hofer <[email protected]>
Date:   Tue Apr 8 12:21:01 2025 +0200

    Fix productCommit(.txt|.json) content in VMR (#48249)

commit ef8529538d13e3f42a6d7bafd3b47770ef92164f
Merge: 44ca9bf55d 79f1fdb87e
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 10:02:20 2025 +0000

    [main] Update dependencies from dotnet/arcade (#48238)

commit 44ca9bf55ddaa65ccdee4a50733bb8567ca0729c
Merge: c822bd4183 04811bab27
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 09:45:16 2025 +0000

    [main] Update dependencies from dotnet/templating (#48247)

commit c822bd41830105441c661822759440cf3538ece9
Merge: d4bbb191a4 c841ec7830
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 09:07:50 2025 +0000

    [automated] Merge branch 'release/9.0.3xx' => 'main' (#48235)

commit d4bbb191a42a38d0ecdb6a1f776cf638db834a35
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 10:36:05 2025 +0200

    [main] Update dependencies from dotnet/runtime (#48034)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Viktor Hofer <[email protected]>
    Co-authored-by: Forgind <[email protected]>
    Co-authored-by: Matt Mitchell (.NET) <[email protected]>
    Co-authored-by: Carlos Sánchez López <[email protected]>
    Co-authored-by: Alexander Köplinger <[email protected]>

commit 51d5ad06d395d3a7edadbd95548c46b0676437a2
Merge: e378cb0545 a3984fb217
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 08:28:19 2025 +0000

    [main] Update dependencies from microsoft/testfx (#48241)

commit e378cb054515b35caa979a8d5324b5d2d1bccb8a
Merge: be13857cc4 78d135d183
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 07:53:06 2025 +0000

    [main] Update dependencies from dotnet/source-build-reference-packages (#48239)

commit be13857cc4ac8bb8986014019431e33f89b0373b
Merge: 43b1c12e33 fab1d60ded
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 07:52:33 2025 +0000

    [main] Update dependencies from dotnet/source-build-externals (#48237)

commit 04811bab27d26c9cb89bec35cffdbf64a54b2231
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 06:55:07 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250407.8

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Authoring.TemplateVerifier , Microsoft.TemplateEngine.Edge , Microsoft.TemplateEngine.Mocks , Microsoft.TemplateEngine.Orchestrator.RunnableProjects , Microsoft.TemplateEngine.TestHelper , Microsoft.TemplateEngine.Utils , Microsoft.TemplateSearch.Common , Microsoft.TemplateSearch.TemplateDiscovery
     From Version 10.0.100-preview.4.25207.6 -> To Version 10.0.100-preview.4.25207.8

commit c841ec78306abe6b9893fbcdf4d5a0f5aa908aa6
Merge: e6814aeed9 43b1c12e33
Author: Jason Zhai <[email protected]>
Date:   Mon Apr 7 22:59:28 2025 -0700

    Merge branch 'main' of https://github.com/dotnet/sdk into merge/release/9.0.3xx-to-main

commit a3984fb217bd2658a431bcb693080d04d70feb21
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 05:02:26 2025 +0000

    Update dependencies from https://github.com/microsoft/testfx build 20250407.6

    Microsoft.Testing.Platform , MSTest
     From Version 1.7.0-preview.25205.1 -> To Version 1.7.0-preview.25207.6

commit 78d135d183f8026c0020643ce4f1a1debb891554
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 05:02:09 2025 +0000

    Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20250407.2

    Microsoft.SourceBuild.Intermediate.source-build-reference-packages
     From Version 10.0.620402 -> To Version 10.0.620702

commit 79f1fdb87ecbdb4338aa35c3fc0875a2b854ae6a
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 05:02:07 2025 +0000

    Update dependencies from https://github.com/dotnet/arcade build 20250407.4

    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions
     From Version 10.0.0-beta.25206.1 -> To Version 10.0.0-beta.25207.4

commit fab1d60dedbcec89257a805f588222b115fbd578
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 8 05:02:06 2025 +0000

    Update dependencies from https://github.com/dotnet/source-build-externals build 20250407.1

    Microsoft.SourceBuild.Intermediate.source-build-externals
     From Version 10.0.620205 -> To Version 10.0.620701

commit e6814aeed95efe30da26ad84829caa81f9b317b1
Merge: a783199e8b 24a76c3551
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 02:05:48 2025 +0000

    [automated] Merge branch 'release/9.0.2xx' => 'release/9.0.3xx' (#48185)

commit 43b1c12e3362098a23ca1018503eb56516840b6a
Merge: 783c8475ee a67709e7f4
Author: v-wuzhai <[email protected]>
Date:   Tue Apr 8 02:00:17 2025 +0000

    [main] Update dependencies from dotnet/fsharp (#48232)

commit 783c8475eee11def2957166df505ae3fde7c58ba
Merge: f922dd9429 263ea56aff
Author: Michael Yanni <[email protected]>
Date:   Mon Apr 7 16:25:46 2025 -0700

    dotnet CLI: Consolidate ResX files (#48199)

commit a67709e7f4edd11369eed6d8e60d5fc99a13df19
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 22:45:12 2025 +0000

    Update dependencies from https://github.com/dotnet/fsharp build 20250407.2

    Microsoft.SourceBuild.Intermediate.fsharp , Microsoft.FSharp.Compiler
     From Version 9.0.300-beta.25181.1 -> To Version 9.0.300-beta.25207.2

commit f922dd9429a1d4d67452ac1fb660595f86f0e13f
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 15:17:28 2025 -0700

    [main] Update dependencies from dotnet/windowsdesktop (#48230)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit c98e95f79b6f87169aef22d538c4b5e6be4d85bd
Author: Ella Hathaway <[email protected]>
Date:   Mon Apr 7 15:12:12 2025 -0700

    Ignore .dwarf files in signing validation (#48229)

commit 554683873144b25876ee21a9ee58b11716af41c1
Author: Nikola Milosavljevic <[email protected]>
Date:   Mon Apr 7 14:32:28 2025 -0700

    Publish scenario-tests logs for installer tests (#48227)

commit e579a1066a652f99171c34a408f6a13b30adbd88
Merge: 99fe7ae6da 022df31dc5
Author: Forgind <[email protected]>
Date:   Mon Apr 7 13:22:28 2025 -0700

    [automated] Merge branch 'release/9.0.3xx' => 'main' (#48150)

commit 263ea56aff144e9706eef004422351a9c15afeb9
Author: Michael Yanni <[email protected]>
Date:   Mon Apr 7 11:55:19 2025 -0700

    Clean up inclusion of the resx files. Add default namespace for dotnet-sln.Tests.csproj.

commit 99fe7ae6da32b346e78148cb388930db83983f42
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 18:18:20 2025 +0000

    [main] Update dependencies from dotnet/windowsdesktop (#48228)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 022df31dc57d4530e945676c203e632134f9053c
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Mon Apr 7 10:26:29 2025 -0700

    Restore sln-add Program.cs

commit f2dca3cecf7561f04ea1ab32037b0fe7652111e3
Author: Wenwen <[email protected]>
Date:   Mon Apr 7 15:45:51 2025 +0000

    Keep artifact directory (#48218)

commit 9dccc36b23b3436041df67ffcd1e8d236d0db619
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 17:08:23 2025 +0200

    [main] Update dependencies from dotnet/razor (#48222)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 83ea5d33a252703cb8a149eb577b50fa3b9c2188
Author: .NET Source-Build Bot <[email protected]>
Date:   Mon Apr 7 09:57:06 2025 -0500

    Update Source-Build License Scan Baselines and Exclusions (#48223)

commit 611c6559fd353cf1bb43f942edca22668a3e9249
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 14:41:38 2025 +0000

    [main] Update dependencies from dotnet/templating (#48221)

    [main] Update dependencies from dotnet/templating

commit 3306791bf1aafe0934cb924fcb39c8f1b5534478
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 15:59:59 2025 +0200

    [main] Update dependencies from dotnet/windowsdesktop (#48217)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit c9afef11f78b5e5fa4c9725ef873323178830474
Author: Javier Calvarro Nelson <[email protected]>
Date:   Mon Apr 7 15:30:32 2025 +0200

    [StaticWebAssets] Additional endpoints were incorrectly being passed to consuming projects during publish (#48224)

    There was a typo, and the wrong item group was being used to compute the referenced project endpoints

commit b6698db12038ff1cb03a25f6174cd24c38ded2b6
Author: Jakub Jareš <[email protected]>
Date:   Mon Apr 7 13:58:11 2025 +0200

    Fix incorrect index in MSTest template (#48168)

commit a783199e8bd988c1a35e5d7abfa6ff9b3038d980
Author: Jakub Jareš <[email protected]>
Date:   Mon Apr 7 13:57:48 2025 +0200

    [release/9.0.3xx] Open Test1.cs in Visual Studio, not MSTestSettings.cs (#48167)

commit c7c6caab6e06c0be2b0d867997caf182a990cad8
Merge: b1df628b51 31b7ec50c5
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 10:11:18 2025 +0000

    [main] Update dependencies from dotnet/templating (#48206)

commit b1df628b51edc04b3ff571f7e6fe9e2331f34106
Merge: 9b0d725c8b 4ac9ac8562
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 09:23:00 2025 +0000

    [main] Update dependencies from dotnet/deployment-tools (#48210)

commit 9b0d725c8bbe7b98027e22c02583c86d1acef189
Merge: 546b8511da fead463309
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 08:49:41 2025 +0000

    [main] Update dependencies from microsoft/testfx (#48215)

commit 546b8511da8462a09ad7888c456c7632863f905d
Merge: 9d75e4cc41 58ff23efbd
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 08:49:22 2025 +0000

    [main] Update dependencies from dotnet/arcade (#48211)

commit ead71e54376b100623e625d6e8dfc44d783adba9
Author: Jason Zhai <[email protected]>
Date:   Mon Apr 7 01:47:36 2025 -0700

    Revert the changes made to the directory files under eng

commit 12d34eda9e60ba08f098a257cb2bd629d8e8961f
Merge: 658ae15437 9d75e4cc41
Author: Jason Zhai <[email protected]>
Date:   Mon Apr 7 01:42:29 2025 -0700

    Merge branch 'main' of https://github.com/dotnet/sdk into merge/release/9.0.3xx-to-main

commit 31b7ec50c53d1431924b1acd77228107ec89740c
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 07:55:02 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250406.8

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Authoring.TemplateVerifier , Microsoft.TemplateEngine.Edge , Microsoft.TemplateEngine.Mocks , Microsoft.TemplateEngine.Orchestrator.RunnableProjects , Microsoft.TemplateEngine.TestHelper , Microsoft.TemplateEngine.Utils , Microsoft.TemplateSearch.Common , Microsoft.TemplateSearch.TemplateDiscovery
     From Version 10.0.100-preview.4.25203.6 -> To Version 10.0.100-preview.4.25206.8

commit 24a76c35519a687735722f2786914f925a002e7a
Merge: db40e8a3eb 658ae15437
Author: Jason Zhai <[email protected]>
Date:   Sun Apr 6 22:51:41 2025 -0700

    Merge branch 'release/9.0.3xx' of https://github.com/dotnet/sdk into merge/release/9.0.2xx-to-release/9.0.3xx

commit 658ae1543760a3bc75c924478e8fd1b1af00eac7
Merge: 9e9ab2ab5f dc26611c6c
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 05:48:45 2025 +0000

    [release/9.0.3xx] Update dependencies from dotnet/templating (#48204)

commit db40e8a3eb32694623c2d19af1891c400daf8cf0
Merge: ed37618364 fab6c77f73
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 05:48:19 2025 +0000

    [release/9.0.2xx] Update dependencies from dotnet/templating (#48205)

commit fead463309e1b592e3c7ebbd712ce3bceecfb88b
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 05:03:16 2025 +0000

    Update dependencies from https://github.com/microsoft/testfx build 20250405.1

    Microsoft.Testing.Platform , MSTest
     From Version 1.7.0-preview.25204.5 -> To Version 1.7.0-preview.25205.1

commit 58ff23efbde233345325893d335b49655667596b
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 05:03:02 2025 +0000

    Update dependencies from https://github.com/dotnet/arcade build 20250406.1

    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions
     From Version 10.0.0-beta.25204.12 -> To Version 10.0.0-beta.25206.1

commit 4ac9ac856215b25e1218c344fe4f399b5c4dd06f
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 05:02:04 2025 +0000

    Update dependencies from https://github.com/dotnet/deployment-tools build 20250331.1

    Microsoft.SourceBuild.Intermediate.deployment-tools , Microsoft.Deployment.DotNet.Releases
     From Version 9.0.0-preview.1.25177.1 -> To Version 9.0.0-preview.1.25181.1

commit 227dcf49ca3ee156b735c50afe5b94705d1bf1e1
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 02:36:54 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250406.2

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Authoring.TemplateVerifier , Microsoft.TemplateEngine.Edge , Microsoft.TemplateEngine.Mocks , Microsoft.TemplateEngine.Orchestrator.RunnableProjects , Microsoft.TemplateEngine.TestHelper , Microsoft.TemplateEngine.Utils , Microsoft.TemplateSearch.Common , Microsoft.TemplateSearch.TemplateDiscovery
     From Version 10.0.100-preview.4.25203.6 -> To Version 10.0.100-preview.4.25206.2

commit fab6c77f7329965b7a71f11b3645586750176a7c
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 02:31:43 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250406.7

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks
     From Version 9.0.204-servicing.25203.4 -> To Version 9.0.204-servicing.25206.7

commit dc26611c6ce655d5a89532e75c06aee53fd9de61
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Apr 7 02:14:01 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250406.1

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks
     From Version 9.0.300-preview.25203.5 -> To Version 9.0.300-preview.25206.1

commit 9e9ab2ab5f1255a96d7a86c4a8bd2092bec97781
Merge: 5415c93de3 629ace85ab
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 00:58:21 2025 +0000

    [release/9.0.3xx] Update dependencies from dotnet/arcade (#48197)

commit 9d75e4cc419c047cd8c6de205e0addc7e6f466bc
Merge: e0e0bf2681 14ea109fce
Author: v-wuzhai <[email protected]>
Date:   Mon Apr 7 00:57:44 2025 +0000

    [main] Update dependencies from microsoft/testfx (#48201)

commit e0e0bf268140f3eea00637e0e122764f4f0a6191
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 18:12:26 2025 +0000

    [main] Update dependencies from dotnet/arcade (#48188)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Alexander Köplinger <[email protected]>

commit 9ed5a0cc5db9a1451cd3ed76adf8847373769871
Merge: 164427d6c1 0f8ec2a00d
Author: Michael Yanni <[email protected]>
Date:   Sun Apr 6 09:36:41 2025 -0700

    Merge branch 'main' into CliResxFileCleanup

commit 0f8ec2a00d3e841c2867ed2c41ac3f30d6af8cab
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 14:16:14 2025 +0000

    [main] Update dependencies from dotnet/razor (#48173)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Viktor Hofer <[email protected]>

commit a27a21d9f18760bb4c83da1941170859ca62e7ac
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 14:04:05 2025 +0200

    [main] Update dependencies from dotnet/source-build-reference-packages (#48189)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit f2dd5598b8cf7cf60c153051b7e90cd4e1d1c713
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 08:37:48 2025 +0000

    [main] Update dependencies from dotnet/windowsdesktop (#48198)

    [main] Update dependencies from dotnet/windowsdesktop

commit 229149ebdc2c69c04ae8dded6c35f681a0a526fb
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 09:32:36 2025 +0200

    [main] Update dependencies from dotnet/msbuild (#48190)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 14ea109fcedfc745b7b020e8c87beaba268a202b
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Apr 6 05:02:04 2025 +0000

    Update dependencies from https://github.com/microsoft/testfx build 20250404.5

    Microsoft.Testing.Platform , MSTest
     From Version 1.7.0-preview.25204.3 -> To Version 1.7.0-preview.25204.5

commit 7f5a377189fe197f7009181a3ef75b5cf7cb7cf4
Author: Youssef Victor <[email protected]>
Date:   Sun Apr 6 04:27:37 2025 +0200

    Simplify logic around _MTPBuild target (#48097)

commit 164427d6c16b6c15e5507efb5f6ef0d5eaa019db
Author: Michael Yanni <[email protected]>
Date:   Sat Apr 5 12:09:19 2025 -0700

    Extra stray spaces were removed when the strings were moved to the new resx file, so the test results needed updated. Minor adjustments to test file syntax.

commit b69951559785cbfa9b05162e96be368bb8781a10
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sat Apr 5 11:54:06 2025 -0700

    [main] Update dependencies from microsoft/testfx (#48194)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 8920b802c7aefb9192c088bcd65c64e655dd1e0a
Author: Rick Anderson <[email protected]>
Date:   Sat Apr 5 08:53:26 2025 -1000

    Update README.md (#48187)

commit 271ed2c9068424d33988780e2fa56a0d572d4a40
Merge: 23209c40cc 87fd0c87fb
Author: Michael Yanni <[email protected]>
Date:   Sat Apr 5 10:12:53 2025 -0700

    Merge branch 'main' into CliResxFileCleanup

commit 87fd0c87fb6dddb180555bfd36578f83db70c5d4
Author: Viktor Hofer <[email protected]>
Date:   Sat Apr 5 11:05:11 2025 +0200

    Make some targets in redist incremental (#48102)

commit 23209c40ccd650d8a34d7b1c41385380e53886e9
Author: Michael Yanni <[email protected]>
Date:   Sat Apr 5 01:07:21 2025 -0700

    Renamed the Commands LocalizableStrings.resx to CliCommandStrings.resx. Fixed uses to no longer require any namespace differentiation.

commit 8498299dc8c98d91805d3ebe3a73f95cf19c2af0
Author: Michael Yanni <[email protected]>
Date:   Sat Apr 5 00:22:21 2025 -0700

    Renamed CommonLocalizableStrings.resx to CliStrings.resx.

commit 8a8792d4f2d19b4f161f2e807a75c35676d842b5
Author: Michael Yanni <[email protected]>
Date:   Fri Apr 4 23:51:02 2025 -0700

    Moved the Commands strings into a new LocalizableStrings.resx in the Commands folder. Fixed namespaces for various files that were never correctly adjusted. Fixed various license headers. Fixed various using statements.

commit 629ace85ab7ec1409eb2b9960889ab8ad1624f78
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sat Apr 5 05:02:50 2025 +0000

    Update dependencies from https://github.com/dotnet/arcade build 20250404.5

    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions
     From Version 9.0.0-beta.25164.2 -> To Version 9.0.0-beta.25204.5

commit 2c6b3798bdf61ee894afd104cfa13623933fa8d1
Author: Michael Yanni <[email protected]>
Date:   Fri Apr 4 20:38:54 2025 -0700

    Moved the non-Commands strings into the CommonLocalizableStrings.resx.

commit 9a2c6381f46567ced14f7b092640b2108c53cf5f
Author: Michael Yanni <[email protected]>
Date:   Fri Apr 4 19:39:19 2025 -0700

    Removed unused strings from dotnet project resx files.

commit 70d4f959161ad4c7de7177b73b3e7de7635fc3cf
Author: Youssef Victor <[email protected]>
Date:   Sat Apr 5 03:49:52 2025 +0200

    Basic support for launchSettings in the new dotnet test (#48063)

    Co-authored-by: Amaury Levé <[email protected]>

commit da240af6453b6081b8e469673a25d78a119feb70
Author: Michael Yanni <[email protected]>
Date:   Fri Apr 4 18:35:23 2025 -0700

    Renamed all duplicate string names in dotnet resx files.

commit f62c32fc6fbf328d40efa9f85ab47fd59c0514a8
Merge: 98365091a6 8b71405d53
Author: Joel Verhagen <[email protected]>
Date:   Fri Apr 4 19:29:34 2025 -0400

    Allow additional package types with PackAsTool (#48039)

    Resolves https://github.com/NuGet/Home/issues/14220

commit 98365091a689926d8f193d28038ca7798bd42233
Author: Rick Anderson <[email protected]>
Date:   Fri Apr 4 13:14:28 2025 -1000

    Update package-table.md (#48186)

commit 5415c93de307de7d15587a88932fa0baf49cfc46
Author: Forgind <[email protected]>
Date:   Fri Apr 4 16:10:38 2025 -0700

    Hide stack on WorkloadResolver constructor error (#38091)

commit 0f8862f1f19e21bd2bab622fd02c5c6f4a78baa7
Author: Jakub Jareš <[email protected]>
Date:   Sat Apr 5 00:27:32 2025 +0200

    Auto enable retry when detected (#48142)

commit ed37618364b9b4b1831e1963d6d14b44da9d3dbf
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 15:23:11 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/arcade (#48180)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit fd3007eed6b00e005cab0a6704d3ffea3c37281a
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 15:22:48 2025 -0700

    [main] Update dependencies from dotnet/windowsdesktop (#48183)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 8b71405d53ca3260422c25e369aba3102ded0fab
Author: Joel Verhagen <[email protected]>
Date:   Fri Apr 4 17:24:42 2025 -0400

    Feedback: move common condition to PropertyGroup

commit 2524b46d1552cfe2a5562571a0dffe91dadb3583
Author: Joel Verhagen <[email protected]>
Date:   Fri Apr 4 16:38:08 2025 -0400

    Fix test name

commit aa5694ef4888e64a257baaf3332c727cd3cc3cb1
Author: Joel Verhagen <[email protected]>
Date:   Fri Apr 4 16:36:27 2025 -0400

    Add tests

commit b35e5435e38650407fffe74cfdc768e825fc7de7
Author: Javier Calvarro Nelson <[email protected]>
Date:   Fri Apr 4 21:38:02 2025 +0200

    [StaticWebAsset] Fix label not being correctly updated and add a unit test (#48171)

commit 97de8903df230b04fdb7a2f209e3cdc6c7b7f968
Merge: af0dae73d4 99ba06e203
Author: Marc Paine <[email protected]>
Date:   Fri Apr 4 09:23:19 2025 -0700

    [release/9.0.3xx] Update dependencies from microsoft/vstest (#48165)

commit 88351502581d6d5e5bb6e824baebe93f075e3860
Author: Nikola Milosavljevic <[email protected]>
Date:   Fri Apr 4 08:29:45 2025 -0700

    Do not use live shims for tools packages in VMR (#48153)

commit c70197391a5782a8b3b9140a2e54ac29e599ca00
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:10:26 2025 -0700

    [main] Update dependencies from microsoft/testfx (#48163)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit e43cd8504e214c18ff5aa775a2eeae57107f592a
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:10:05 2025 -0700

    [main] Update dependencies from dotnet/razor (#48157)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 0a279d3a5d3265858471454072bda2de8f2f1e29
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:09:54 2025 -0700

    [main] Update dependencies from dotnet/msbuild (#48160)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 12ef2e53efaf0648ec2ea95729cfd9abccbb49ac
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:09:47 2025 -0700

    [main] Update dependencies from dotnet/windowsdesktop (#48156)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 07cecce0d9113ae9b4d6596e4ee4a8474abb4b2c
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:09:33 2025 -0700

    [main] Update dependencies from dotnet/sourcelink (#48161)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 52100bbcc6bb4431273b78524989e8e3d1be95db
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 07:09:20 2025 -0700

    [main] Update dependencies from dotnet/arcade (#48159)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit d02c58fc2afa535412adc3e9f83eb2127c16f675
Author: Přemek Vysoký <[email protected]>
Date:   Fri Apr 4 12:46:15 2025 +0200

    Disable synchronization of sourcelink to the VMR (#48166)

commit f975c7a2be827dfe0c5710165024fb00e622a492
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 10:14:00 2025 +0200

    [main] Update dependencies from dotnet/templating (#48081)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit e72b1d73b53e6b0873a9b9845bd25863d93acab3
Author: Jakub Jareš <[email protected]>
Date:   Fri Apr 4 10:02:06 2025 +0200

    Improve MTP dotnet test exit code messages  (#47979)

commit 99ba06e2036781517ef5b0792b9b5b7f8825667f
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Apr 4 05:02:17 2025 +0000

    Update dependencies from https://github.com/microsoft/vstest build 20250403.1

    Microsoft.SourceBuild.Intermediate.vstest , Microsoft.NET.Test.Sdk , Microsoft.TestPlatform.Build , Microsoft.TestPlatform.CLI
     From Version 17.14.0-preview-25202-02 -> To Version 17.14.0-release-25203-01

commit b23fbb5f566f13ed851023a3e916e01553f1f358
Merge: d934e19458 bce160cae1
Author: Marc Paine <[email protected]>
Date:   Thu Apr 3 16:49:05 2025 -0700

    Update to AwesomeAssertions  (#47611)

commit bce160cae1a65c8a34e7c94c62d43a6fa67a71ab
Author: Marc Paine <[email protected]>
Date:   Thu Apr 3 12:53:52 2025 -0700

    Add signing information for three dlls blocking the vmr build

commit d934e194587bb074cd1820b747bcd63cd6975720
Author: Omair Majid <[email protected]>
Date:   Thu Apr 3 13:39:33 2025 -0400

    Make it possible to prep other RIDs and architectures (#47956)

commit 1b5d5ba80d17c812ba60d4b3e1630acda51c9e00
Author: Javier Calvarro Nelson <[email protected]>
Date:   Thu Apr 3 19:34:16 2025 +0200

    [StaticWebAssets] Optimize StaticWebAsset and StaticWebAssetEndpoint (#47833)

    * Avoid accessing the properties until needed.
    * Reuse the original Task Item if it wasn't modified.
    * Avoid deserializing expensive properties unless needed.
    * Sort endpoint headers/properties/selectors on write.

commit af0dae73d45af88a32ad01c9d9d254c622cb1643
Merge: 5026d90461 cbc5917c2f
Author: Forgind <[email protected]>
Date:   Thu Apr 3 10:25:42 2025 -0700

    [automated] Merge branch 'release/9.0.2xx' => 'release/9.0.3xx' (#48118)

commit f0afd113b2dd5f65412bf9f0c6e0325f1e40f2cb
Author: Marek Fišera <[email protected]>
Date:   Thu Apr 3 19:12:29 2025 +0200

    [StaticWebAssets] Generate Link elements based on StaticWebAssets manifest properties (#47915)

commit 29963843b2f05d7f6282bf4af0c2c3ac36727d0a
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 16:56:04 2025 +0000

    [main] Update dependencies from dotnet/msbuild (#48090)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 0ddd606d60989f6bf5dd7b11ab8d8931e7ebfb3d
Author: Michael Simons <[email protected]>
Date:   Thu Apr 3 09:46:43 2025 -0700

    Fix truncated symbols paths in log output from CreateSdkSymbolsLayout (#48147)

commit 86653daebd020bbd58a12a69bb5326da37b31d99
Author: Matt Mitchell <[email protected]>
Date:   Thu Apr 3 09:41:34 2025 -0700

    Remove duplicated azl cert declarations (#48146)

commit a7788517c9a40fefd2a311de7e94fa5028ad1ce4
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 09:31:59 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/templating (#48139)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 5026d904612f440acd20dacc40d808d7008ebcde
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 09:31:36 2025 -0700

    [release/9.0.3xx] Update dependencies from dotnet/templating (#48137)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 6886ac63af348305dd5621fd7b6101eba60ba8e8
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 09:29:59 2025 -0700

    [release/9.0.3xx] Update dependencies from dotnet/roslyn-analyzers (#48115)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Jason Zhai <[email protected]>

commit 581b46209159ff89c89ac4a9f2a70c6f28b6f0cd
Author: Marc Paine <[email protected]>
Date:   Thu Apr 3 09:14:42 2025 -0700

    Update to the latest application insights (#47924)

    Co-authored-by: Jason Zhai <[email protected]>
    Co-authored-by: Michael Simons <[email protected]>

commit ddda5afa714ebb20d191e6a1a1e0ee390abdbebd
Merge: fb2baf353a a6373af242
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 09:23:54 2025 +0000

    [release/9.0.3xx] Update dependencies from dotnet/roslyn (#48135)

commit 33343859a1a9a1fa171a92af62634fa7d0851638
Merge: 3d618732c3 6bd4517df2
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 09:16:39 2025 +0000

    [main] Update dependencies from dotnet/windowsdesktop (#48136)

commit 3d618732c37f027d499caee6a26a4ad5e88b468a
Author: Jakub Jareš <[email protected]>
Date:   Thu Apr 3 11:13:03 2025 +0200

    Add ux for retry in dotnet test (#48075)

commit 96c0bbaf63a6daa0887307231a0e4da2c6a7da90
Merge: b4adc03f30 0baf410f39
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 08:55:37 2025 +0000

    [release/9.0.2xx] Update dependencies from dotnet/razor (#47819)

commit fb2baf353af560a4408ed07537b7bc6bad3fd60e
Merge: 28a72d7e59 c4a09fc0c0
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 08:54:45 2025 +0000

    [release/9.0.3xx] Update dependencies from microsoft/vstest (#48134)

commit 28a72d7e590bd9193a89f775fceb7d8c44e67519
Merge: 044c7f137c d8b7d19763
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 08:54:03 2025 +0000

    [release/9.0.3xx] Update dependencies from dotnet/razor (#48128)

commit 044c7f137cabcdd27bf6e7831c348722a08386f8
Merge: 2ac5f7cc27 c0ddd1d44d
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 08:52:48 2025 +0000

    [release/9.0.3xx] Update dependencies from nuget/nuget.client (#48117)

commit 33d6c5fa06a7b90ff45d97b554b5c418357644cb
Merge: b77c3846c5 5eed39beb6
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 07:56:26 2025 +0000

    [automated] Merge branch 'release/9.0.3xx' => 'main' (#48098)

commit b77c3846c5d7d9ba594b56c51009673c683a5590
Merge: 59642770a3 d162b7b641
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 07:38:50 2025 +0000

    [main] Update dependencies from dotnet/source-build-reference-packages (#48130)

commit 5eed39beb67421803d402ef2318a51f8a0ca3760
Merge: 2ac5f7cc27 59642770a3
Author: Jason Zhai <[email protected]>
Date:   Thu Apr 3 00:20:57 2025 -0700

    Merge branch 'main' of https://github.com/dotnet/sdk into merge/release/9.0.3xx-to-main

commit cbc5917c2f49ef62ab223506baa1f1f08f5ace75
Merge: b4adc03f30 2ac5f7cc27
Author: Jason Zhai <[email protected]>
Date:   Thu Apr 3 00:18:50 2025 -0700

    Merge branch 'release/9.0.3xx' of https://github.com/dotnet/sdk into merge/release/9.0.2xx-to-release/9.0.3xx

commit 6bd4517df29925b8ed4a36ee0aab9f436d771d4b
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 05:49:51 2025 +0000

    Update dependencies from https://github.com/dotnet/windowsdesktop build 20250402.9

    Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 , VS.Redist.Common.WindowsDesktop.SharedFramework.x64.10.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.10.0
     From Version 10.0.0-preview.4.25202.1 -> To Version 10.0.0-preview.4.25202.9

    Dependency coherency updates

    Microsoft.NET.Sdk.WindowsDesktop,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.DotNet.Wpf.ProjectTemplates
     From Version 10.0.0-preview.4.25202.2 -> To Version 10.0.0-preview.4.25202.6 (parent: Microsoft.WindowsDesktop.App.Ref

commit 59642770a300871cd9f8c157f79ac0273ee54091
Merge: faf463d27e bdd9a3e3d1
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 05:37:23 2025 +0000

    [main] Update dependencies from microsoft/vstest (#48113)

commit a6373af242c458650a130d70cfd8911dfa6c5012
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 05:02:38 2025 +0000

    Update dependencies from https://github.com/dotnet/roslyn build 20250402.5

    Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.PublicApiAnalyzers , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset , Microsoft.Net.Compilers.Toolset.Framework
     From Version 4.14.0-3.25179.1 -> To Version 4.14.0-3.25202.5

commit c4a09fc0c0a76e03c49b83fa70c4d3fc47a30289
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 05:02:32 2025 +0000

    Update dependencies from https://github.com/microsoft/vstest build 20250402.2

    Microsoft.SourceBuild.Intermediate.vstest , Microsoft.NET.Test.Sdk , Microsoft.TestPlatform.Build , Microsoft.TestPlatform.CLI
     From Version 17.14.0-preview-25201-01 -> To Version 17.14.0-preview-25202-02

commit d162b7b641d7b67dd1b5af09cad92c49d28f0da3
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 05:02:12 2025 +0000

    Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20250402.2

    Microsoft.SourceBuild.Intermediate.source-build-reference-packages
     From Version 10.0.618101 -> To Version 10.0.620202

commit d8b7d19763ff18fbeb6bd4de91d608a84171a409
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Apr 3 05:01:22 2025 +0000

    Update dependencies from https://github.com/dotnet/razor build 20250402.4

    Microsoft.SourceBuild.Intermediate.razor , Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport
     From Version 9.0.0-preview.25201.3 -> To Version 9.0.0-preview.25202.4

commit b4adc03f30da99cb022433ec970b75bea904680c
Merge: 64c106b037 e9e06a3cf3
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 02:03:51 2025 +0000

    [release/9.0.2xx] Update dependencies from dotnet/roslyn (#47666)

commit faf463d27e714a7ae29809907f1fcfaa722b8fb9
Merge: 10ccd43dc0 8e8278109b
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 01:00:36 2025 +0000

    [main] Update dependencies from dotnet/windowsdesktop (#48116)

commit 10ccd43dc07f697f81588ce86bdba44ff852035c
Merge: eab2cab40c 1a0ac47108
Author: v-wuzhai <[email protected]>
Date:   Thu Apr 3 00:58:22 2025 +0000

    [main] Update dependencies from dotnet/razor (#48123)

commit 64c106b0377f3ed131a8acb0d9a5b2fd613e17e7
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Wed Apr 2 16:02:49 2025 -0700

    sln-add: Get project DefaultProjectTypeGuid (#47661)

    Fixes #47638, #522

    Description and impact
    When adding a new project that is not known for the SDK or MSBuild, it should read the DefaultProjectTypeGuid property from the project file.

    Regression
    Yes - this worked before 9.0.2xx

    Risk
    Low – Currently it errors when adding unknown project types, unless the ProjectTypeGuid is specified on the project itself, or on the solution file.

    Testing
    Unit tests on this were ambiguous, so they were renamed to better match their cases.
    I was also able to reproduce the bug...

commit 993c0734a048e2fea19e507df160088ea415427a
Merge: 477b0ebe24 238424015e
Author: Forgind <[email protected]>
Date:   Wed Apr 2 15:56:00 2025 -0700

    [automated] Merge branch 'release/9.0.1xx' => 'release/9.0.2xx' (#47514)

commit eab2cab40c8731630474c9a7adf0cbc86e70c3b1
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 22:54:18 2025 +0000

    [main] Update dependencies from dotnet/arcade (#48114)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 477b0ebe2439a5d7491db1cafcb909fdc1025509
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 15:46:13 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/msbuild (#47736)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit b2639aa68080713b52c910500d60dab1d06c0230
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 15:42:24 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/roslyn-analyzers (#47814)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 1a0ac471088bf8d32c397c2c05cf215ba4c0bf00
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 22:19:54 2025 +0000

    Update dependencies from https://github.com/dotnet/razor build 20250402.3

    Microsoft.SourceBuild.Intermediate.razor , Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport
     From Version 10.0.0-preview.25202.2 -> To Version 10.0.0-preview.25202.3

commit 163f87c62f0263ee96ec0c842f12541cc599d2fb
Author: Jeremy Koritzinsky <[email protected]>
Date:   Wed Apr 2 16:35:00 2025 -0500

    Publish productVersion.txt for all repos (#48105)

commit c0ddd1d44d9986c54c956e17a2a0dd1e4d2c0058
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 21:01:19 2025 +0000

    Update dependencies from https://github.com/nuget/nuget.client build 6.14.0.102

    Microsoft.Build.NuGetSdkResolver , NuGet.Build.Tasks , NuGet.Build.Tasks.Console , NuGet.Build.Tasks.Pack , NuGet.CommandLine.XPlat , NuGet.Commands , NuGet.Common , NuGet.Configuration , NuGet.Credentials , NuGet.DependencyResolver.Core , NuGet.Frameworks , NuGet.LibraryModel , NuGet.Localization , NuGet.Packaging , NuGet.ProjectModel , NuGet.Protocol , NuGet.Versioning
     From Version 6.13.0-rc.113 -> To Version 6.14.0-preview.1.102

commit d0ab6ed4165431a637e5082910e157ac8bfa4fd4
Author: vseanreesermsft <[email protected]>
Date:   Wed Apr 2 14:00:54 2025 -0700

    Update branding to 9.0.204 (#48111)

commit 8e8278109bd0756dd5db9500791e5b4dd5b34141
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 20:43:28 2025 +0000

    Update dependencies from https://github.com/dotnet/windowsdesktop build 20250402.1

    Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 , VS.Redist.Common.WindowsDesktop.SharedFramework.x64.10.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.10.0
     From Version 10.0.0-preview.4.25201.2 -> To Version 10.0.0-preview.4.25202.1

    Dependency coherency updates

    Microsoft.NET.Sdk.WindowsDesktop,Microsoft.Dotnet.WinForms.ProjectTemplates,Microsoft.DotNet.Wpf.ProjectTemplates
     From Version 10.0.0-preview.4.25201.2 -> To Version 10.0.0-preview.4.25202.2 (parent: Microsoft.WindowsDesktop.App.Ref

commit 59c823dd5f7c7eb0593e20c8ee68aa24ad200d29
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 13:37:28 2025 -0700

    [main] Update dependencies from dotnet/razor (#48106)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit ba5407e49cfb4128e781ea018dd1f8b8f8560e2f
Author: Ella Hathaway <[email protected]>
Date:   Wed Apr 2 12:52:17 2025 -0700

    Improve Post-Build Signing Validation in the VMR (#47744)

commit bdd9a3e3d17e91a7ab08deb362f4320d3ee5ae01
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 18:39:50 2025 +0000

    Update dependencies from https://github.com/microsoft/vstest build 20250402.2

    Microsoft.SourceBuild.Intermediate.vstest , Microsoft.NET.Test.Sdk , Microsoft.TestPlatform.Build , Microsoft.TestPlatform.CLI
     From Version 17.14.0-preview-25202-01 -> To Version 17.14.0-preview-25202-02

commit 4052072260672708d04ee944e20faa07113e55b4
Author: Michael Simons <[email protected]>
Date:   Wed Apr 2 09:43:48 2025 -0700

    Add logic to track SBRP project references in the SBRPUsageReport (#48104)

commit 9b7b3e0ba6e95ed00a404feac336ff60139c4a52
Author: .NET Source-Build Bot <[email protected]>
Date:   Wed Apr 2 11:27:20 2025 -0500

    Update Source-Build SDK Diff Tests Baselines and Exclusions (#48067)

commit 342ad6fb9758d869a0534a303c8130df28182aba
Author: Surayya Huseyn Zada <[email protected]>
Date:   Wed Apr 2 17:39:37 2025 +0200

    Use `dotnet/runtime-deps` images instead of `dotnet/nightly/runtime-deps` for AOT (#48101)

commit 19b1710771240ff2a06b331732b9ecd2e6f8387b
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 08:22:05 2025 -0700

    [main] Update dependencies from microsoft/vstest (#48099)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 687e9810374a90dd1d2bd94d5d6de5c3729f8d22
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 08:21:47 2025 -0700

    [main] Update dependencies from nuget/nuget.client (#48100)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit 46028e4a33ea47ffb14b0a3936de4d4b42c4329e
Author: Joel Verhagen <[email protected]>
Date:   Wed Apr 2 10:56:43 2025 -0400

    Prepend DotnetTool

commit 81843b5fa36fe714b152a17a75751e0b51734e36
Merge: d93edb7f69 27406ad2ed
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 10:08:40 2025 +0000

    [main] Update dependencies from dotnet/sourcelink (#48091)

commit 2ac5f7cc279cab880f4a2aa80a2137e8b2f30085
Merge: d6e1f61ccc 47aebc0342
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 10:07:52 2025 +0000

    [release/9.0.3xx] Update dependencies from microsoft/vstest (#48093)

commit d93edb7f69245ba0d7b5b6008b90e8f37dcdaf0c
Merge: b35889907e 3bf8caf53d
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 09:35:18 2025 +0000

    [automated] Merge branch 'release/9.0.3xx' => 'main' (#48096)

commit 3bf8caf53d6f8c55734a6d7538549b49496a3f5e
Merge: d6e1f61ccc b35889907e
Author: Jason Zhai <[email protected]>
Date:   Wed Apr 2 09:34:15 2025 +0000

    Merge branch 'main' of https://github.com/dotnet/sdk into merge/release/9.0.3xx-to-main

commit b35889907e10982cbf69fb67bf9651fbc9ac3e72
Author: Nikola Milosavljevic <[email protected]>
Date:   Wed Apr 2 01:00:46 2025 -0700

    Reuse specific job artifacts in installer test jobs (#48074)

commit abcecd9504d671c8dcfaf852b38f6473706bd8a2
Merge: 6737449899 f2a10c9a6a
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 07:58:15 2025 +0000

    [main] Update dependencies from dotnet/windowsdesktop (#48094)

commit d6e1f61cccabc3426c10d1d245085a411391a77d
Merge: d1bbcda688 dd5055f590
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 07:55:32 2025 +0000

    [release/9.0.3xx] Update dependencies from dotnet/razor (#48089)

commit 6737449899102028a2d61b8e77fd910bd36199f0
Merge: 34908d497a be6a5e0abf
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 07:50:52 2025 +0000

    [main] Update dependencies from nuget/nuget.client (#48064)

commit 34908d497a508cbdf1dc4416a3bfc0a7495c0987
Merge: cbb8f75623 4b6e4fbea5
Author: v-wuzhai <[email protected]>
Date:   Wed Apr 2 07:37:34 2025 +0000

    [main] Update dependencies from microsoft/testfx (#48092)

commit f2a10c9a6ab75404c8417f4c9699af2ac9883e76
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 05:46:42 2025 +0000

    Update dependencies from https://github.com/dotnet/windowsdesktop build 20250401.2

    Microsoft.WindowsDesktop.App.Ref , Microsoft.WindowsDesktop.App.Runtime.win-x64 , VS.Redist.Common.WindowsDesktop.SharedFramework.x64.10.0 , VS.Redist.Common.WindowsDesktop.TargetingPack.x64.10.0
     From Version 10.0.0-preview.4.25201.1 -> To Version 10.0.0-preview.4.25201.2

commit 47aebc0342535509e99ae997d6bf923749d2b868
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 05:02:12 2025 +0000

    Update dependencies from https://github.com/microsoft/vstest build 20250401.1

    Microsoft.SourceBuild.Intermediate.vstest , Microsoft.NET.Test.Sdk , Microsoft.TestPlatform.Build , Microsoft.TestPlatform.CLI
     From Version 17.14.0-preview-25181-02 -> To Version 17.14.0-preview-25201-01

commit 4b6e4fbea5489ec83131f9ba133df06b992c6c0f
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 05:02:06 2025 +0000

    Update dependencies from https://github.com/microsoft/testfx build 20250401.1

    Microsoft.Testing.Platform , MSTest
     From Version 1.7.0-preview.25181.5 -> To Version 1.7.0-preview.25201.1

commit 27406ad2ed21d8bab46294a22cd0942bcaabf86b
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 05:01:53 2025 +0000

    Update dependencies from https://github.com/dotnet/sourcelink build 20250401.1

    Microsoft.SourceBuild.Intermediate.sourcelink , Microsoft.Build.Tasks.Git , Microsoft.SourceLink.AzureRepos.Git , Microsoft.SourceLink.Bitbucket.Git , Microsoft.SourceLink.Common , Microsoft.SourceLink.GitHub , Microsoft.SourceLink.GitLab
     From Version 10.0.0-beta.25181.2 -> To Version 10.0.0-beta.25201.1

commit dd5055f590ab26b903fdf03424301f3d2a2b560e
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Apr 2 05:01:38 2025 +0000

    Update dependencies from https://github.com/dotnet/razor build 20250401.3

    Microsoft.SourceBuild.Intermediate.razor , Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport
     From Version 9.0.0-preview.25181.5 -> To Version 9.0.0-preview.25201.3

commit ca5b062a52c063f8ebe67595f9457693ee351c48
Merge: 2442ba1cd8 dfee875a8c
Author: Forgind <[email protected]>
Date:   Tue Apr 1 15:30:10 2025 -0700

    Merge branch 'main' into marcpopMSFT-updatetoAAmain

commit be6a5e0abf430f41dc54d12f9ec7ece6c4f3d280
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Apr 1 11:19:57 2025 +0000

    Update dependencies from https://github.com/nuget/nuget.client build 6.14.0.99

    Microsoft.Build.NuGetSdkResolver , NuGet.Build.Tasks , NuGet.Build.Tasks.Console , NuGet.Build.Tasks.Pack , NuGet.CommandLine.XPlat , NuGet.Commands , NuGet.Common , NuGet.Configuration , NuGet.Credentials , NuGet.DependencyResolver.Core , NuGet.Frameworks , NuGet.LibraryModel , NuGet.Localization , NuGet.Packaging , NuGet.ProjectModel , NuGet.Protocol , NuGet.Versioning
     From Version 6.14.0-preview.1.97 -> To Version 6.14.0-preview.1.99

commit 45d4b51987a5b88309f78ef8bd258a595b4387f9
Author: Joel Verhagen <[email protected]>
Date:   Mon Mar 31 16:14:00 2025 -0400

    Only set DotnetTool package type if no package type is set

commit 2442ba1cd83cd6dddd25e75faf88d64149252aa5
Author: Marc Paine <[email protected]>
Date:   Tue Mar 25 17:44:57 2025 -0700

    Update the test to not pass in an empty string to the havestderr check

commit 6cd871d98cd8b730f360a506813ed0623f0d4e40
Author: Marc Paine <[email protected]>
Date:   Fri Mar 21 16:28:59 2025 -0700

    Fix file path handling in assertions to limit to the current directory

commit ffeff0a963e85095975059ca9e38a0360108e9ae
Author: Marc Paine <[email protected]>
Date:   Thu Mar 20 15:36:38 2025 -0700

    Instead of creating a new directory and file object with an empty string, I use the input string. This allows us to have the object exist and won't throw null exceptions but will result in correct .Exists calls.

commit 48a12242a31f710101eadd8e09ec9c5571afee0e
Author: Marc Paine <[email protected]>
Date:   Tue Mar 18 11:17:00 2025 -0700

    Fix typo

    Co-authored-by: Chris Sienkiewicz <[email protected]>

commit 942757cb8a869befc20ddb93e3909e77e50b9c0d
Author: Marc Paine <[email protected]>
Date:   Tue Mar 18 11:08:35 2025 -0700

    Make the CommandAssertions null checks match the fluent assertions pattern

commit c39df9b518cfaa588d5eb7c29eba02352ad54626
Author: Marc Paine <[email protected]>
Date:   Tue Mar 18 11:08:30 2025 -0700

    Remove AwesomeAssertions from the unittest.proj

commit 3d23dbc8bc05bce077287f3bf184d5f96845f0fa
Author: Marc Paine <[email protected]>
Date:   Fri Mar 14 11:13:15 2025 -0700

    Fix some additional issues that weren't resolved in the merge conflict
    Handle some nullability

commit 12c9bdd9304ade763e9b97452b747491af207f3e
Author: Marc Paine <[email protected]>
Date:   Thu Mar 13 16:59:55 2025 -0700

    Switch to AwesomeAssertion 8.0.2
    Remove test packages from signing
    Include the AwesomeAssertion in the test directory.build.props to simplify most test project files
    Fix all of the old Fluent format constraints

commit 0baf410f391966bd6e0b0e577049dfcb6ce14e9f
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Tue Mar 25 20:10:29 2025 +0000

    Update dependencies from https://github.com/dotnet/razor build 20250325.7

    Microsoft.SourceBuild.Intermediate.razor , Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport
     From Version 9.0.0-preview.25123.6 -> To Version 9.0.0-preview.25175.7

commit e9e06a3cf3fe9442d0c9706347c3eaef32e6d976
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Mar 23 10:33:52 2025 +0000

    Update dependencies from https://github.com/dotnet/roslyn build 20250323.11

    Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset , Microsoft.Net.Compilers.Toolset.Framework
     From Version 4.13.0-3.25155.17 -> To Version 4.13.0-3.25173.11

commit 6bc0803c31a406bfea2786c1aae41223c6fa3331
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Sun Mar 23 09:29:06 2025 +0000

    Update dependencies from https://github.com/dotnet/razor build 20250323.1

    Microsoft.SourceBuild.Intermediate.razor , Microsoft.AspNetCore.Mvc.Razor.Extensions.Tooling.Internal , Microsoft.CodeAnalysis.Razor.Tooling.Internal , Microsoft.NET.Sdk.Razor.SourceGenerators.Transport
     From Version 9.0.0-preview.25123.6 -> To Version 9.0.0-preview.25173.1

commit 595e0f35ad9b0f1e19c18ef8df0de4161d13bf60
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Mon Mar 17 20:19:10 2025 +0000

    Update dependencies from https://github.com/dotnet/roslyn build 20250317.3

    Microsoft.SourceBuild.Intermediate.roslyn , Microsoft.CodeAnalysis , Microsoft.CodeAnalysis.CSharp , Microsoft.CodeAnalysis.CSharp.CodeStyle , Microsoft.CodeAnalysis.CSharp.Features , Microsoft.CodeAnalysis.CSharp.Workspaces , Microsoft.CodeAnalysis.Workspaces.MSBuild , Microsoft.Net.Compilers.Toolset , Microsoft.Net.Compilers.Toolset.Framework
     From Version 4.13.0-3.25155.17 -> To Version 4.13.0-3.25167.3

commit 673eb374a40ab16fd4cfefe913844ab1cd9ff803
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Mar 14 08:25:34 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/arcade (#47599)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>

commit adcff4d773a6721e71d0286e5ec498fdb8921c40
Author: dotnet-maestro[bot] <42748379+dotnet-maestro[bot]@users.noreply.github.com>
Date:   Fri Mar 14 09:16:09 2025 +0000

    [release/9.0.2xx] Update dependencies from dotnet/scenario-tests (#47552)

    Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
    Co-authored-by: Eduardo Villalpando Mello <[email protected]>

commit 238424015e8df08aa3c0542dab24e233d2942844
Merge: 5c73e608dc 2a74fc2c4a
Author: Jason Zhai <[email protected]>
Date:   Thu Mar 13 22:54:17 2025 -0700

    Merge branch 'release/9.0.2xx' of https://github.com/dotnet/sdk into merge/release/9.0.1xx-to-release/9.0.2xx

commit 2a74fc2c4a3a4f6675665ed1e162bc6472fed151
Merge: c69b63057c b2beed3a97
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 15:10:46 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/arcade (#47518)

commit b2beed3a9726c9e334574e5b0ce1e2c6247e58e4
Merge: 2282faf023 c69b63057c
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 14:06:03 2025 -0700

    Merge branch 'release/9.0.2xx' into darc-release/9.0.2xx-8e1cedf9-4132-4195-8761-b30cc503d474

commit c69b63057cbf1eb3b3f826678ab14895f9acb94d
Merge: 1c2c22ee80 4f95e5f6d8
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 13:48:26 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/templating (#47528)

commit 4f95e5f6d82b66f2ee1edf24e54a0e5b21783bf8
Merge: 68f5df9ddc 1c2c22ee80
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 11:02:21 2025 -0700

    Merge branch 'release/9.0.2xx' into darc-release/9.0.2xx-794ff35a-9def-4dfa-8c1b-f6b711ffb9ed

commit 2282faf0239fc50012a27bdf2b474963fe7bf385
Merge: dc2cb5b547 1c2c22ee80
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 11:00:48 2025 -0700

    Merge branch 'release/9.0.2xx' into darc-release/9.0.2xx-8e1cedf9-4132-4195-8761-b30cc503d474

commit 1c2c22ee8077556a391a4eb2d1f0ec7ebcddb393
Merge: b2333f6f41 082bcded34
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Thu Mar 13 10:11:46 2025 -0700

    [release/9.0.2xx] Update GivenThatWeWantMSBuildToRespectCustomCulture.cs (#47553)

commit 082bcded3473234c94b9ab8e67fadbf5d7bdbb02
Author: Viktor Hofer <[email protected]>
Date:   Thu Mar 13 15:16:11 2025 +0100

    Update GivenThatWeWantMSBuildToRespectCustomCulture.cs

    Fixes failing `SupportRespectAlreadyAssignedItemCulture_IsNotSupported_BuildShouldFail` test by consolidating back with the core only test theory.

    This is causing all PRs in sdk main to fail because of a machine rollout that updated VS to 17.13.x

commit 68f5df9ddc5457cbe68b7b9c2c0965186dbc1b9f
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Mar 13 10:27:46 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250313.4

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks
     From Version 9.0.203-servicing.25156.14 -> To Version 9.0.203-servicing.25163.4

commit 5c73e608dcf7bc321423eea55f7f7a8fdfe8036c
Merge: 8ca1f412b9 b2333f6f41
Author: Jason Zhai <[email protected]>
Date:   Thu Mar 13 00:56:12 2025 -0700

    Merge branch 'release/9.0.2xx' of https://github.com/dotnet/sdk into merge/release/9.0.1xx-to-release/9.0.2xx

commit 395793727c2d9d072d22e95034a7bb5b905e71ba
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Thu Mar 13 03:25:22 2025 +0000

    Update dependencies from https://github.com/dotnet/templating build 20250312.4

    Microsoft.SourceBuild.Intermediate.templating , Microsoft.TemplateEngine.Abstractions , Microsoft.TemplateEngine.Mocks
     From Version 9.0.203-servicing.25156.14 -> To Version 9.0.203-servicing.25162.4

commit b2333f6f41b3fe3d9a08dc6b4c55ff4c35dd2c9c
Merge: 4455c5a1ae a8b7dc58d0
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Wed Mar 12 16:16:08 2025 -0700

    [release/9.0.2xx] Update dependencies from dotnet/msbuild (#47511)

commit dc2cb5b547d6fb718edc82cba7b0a1aed55bf51a
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Mar 12 21:46:54 2025 +0000

    Update dependencies from https://github.com/dotnet/arcade build 20250311.4

    Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Installers , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.SignTool , Microsoft.DotNet.XliffTasks , Microsoft.DotNet.XUnitExtensions
     From Version 9.0.0-beta.25111.5 -> To Version 9.0.0-beta.25161.4

commit 8ca1f412b98857fb03e39fc45008feda47c666c1
Author: .NET Source-Build Bot <[email protected]>
Date:   Wed Mar 12 16:46:35 2025 -0500

    .NET Source-Build 9.0.104 March 2025 Updates (#47466)

    Co-authored-by: Nikola Milosavljevic <[email protected]>

commit 2f3a515827610a95a8cfceba780f378293c9bec4
Merge: 464fd7a20e 83dc5137f1
Author: Eduardo Villalpando Mello <[email protected]>
Date:   Wed Mar 12 10:15:58 2025 -0700

    [automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx' (#47498)

commit a8b7dc58d01dc048da3071f0a0bc2a56d05138d4
Author: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Date:   Wed Mar 12 16:21:55 2025 +0000

    Update dependencies from https://github.com/dotnet/msbuild build 20250312.14

    Microsoft.SourceBuild.Intermediate.msbuild , Microsoft.Build , Microsoft.Build.Localization
     From Version 17.13.19-preview-25128-01 -> To Version 17.13.20-preview-25162-14

commit 83dc5137f120715fb34732e0670db85c232b083b
Merge: 3bb3874792 464fd7a20e
Author: Jason Zhai <[email protected]>
Date:   Wed Mar 12 02:06:24 2025 -0700

    Merge branch 'release/9.0.1xx' of https://github.com/dotnet/sdk into merge/release/8.0.4xx-to-release/9.0.1xx

commit 3bb3874792b34a7e5210fd0cc20092c6adc4a3bf
Merge: a34e2ef49c a1d68523e2
Author: v-wuzhai <[email protected]>
Date:   Wed Mar 12 01:54:51 2025 -0700

    [automated] Merge branch 'release/8.0.3xx' => 'release/8.0.4xx' (#47476)

commit 4455c5a1aee4248bf42a08a6539e1e1d6c2899ff
Merge: d1c4c2a577 1d4c4184fb
Author: v-wuzhai <[email protected]>
Date:   Wed Mar 12 01:53:14 2025 -0700

    [automated] Merge branch 'release/9.0.1xx' => 'release/9.0.2xx' (#47490)

commit 464fd7a20e71535a4878a68d7c684de87901bb6f
Merge: 1b40c2acb1 7082d2b6df
Author: v-wuzhai <[email protected]>
Date:   Wed Mar 12 01:04:00 2025 -0700

    [automated] Merge branch 'release/8.0.4xx' => 'release/9.0.1xx' (#47477)

commit a1d68523e2b0e0869b4f05f76a7e7f9893ac10d1
Merge: b3e9800810 a34e2ef49c
Author: Jason Zhai <[email protected]>
Date:   Wed Mar 12 00:23:42 2025 -0700

    Merge branch 'release/8.0.4xx' of https://github.com/dotnet/sdk into merge/release/8.0.3xx-to-release/8.0.4xx

commit b3e98008105c152ace8d301490c1435c6f447ac9
Merge: 48f8744c63 1d7dc21b89
Author: v-wuzhai <[email protected]>
Date:   Wed Mar 12 00:13:03 2025 -0700

    [automated] Merge branch 'release/8.0.1xx' => 'release/8.0.3xx' (#47457)

commit 1d4c4184fb312d636776b3e47a429cda3439a723
Merge: 1b40c2acb1 d1c4c2a577
Author: Jason Zhai <[email protected]>
Date: …
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Area-CLI untriaged Request triage from a team member
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants