Skip to content

Update to 10.0.1 references#13072

Merged
rainersigwald merged 15 commits intomainfrom
exp/raines/update-runtime-packages-to-10-0-1-try2
Jan 21, 2026
Merged

Update to 10.0.1 references#13072
rainersigwald merged 15 commits intomainfrom
exp/raines/update-runtime-packages-to-10-0-1-try2

Conversation

@rainersigwald
Copy link
Copy Markdown
Member

Copilot AI and others added 13 commits December 9, 2025 16:22
Co-authored-by: rainersigwald <3347530+rainersigwald@users.noreply.github.com>
- Update eng/Versions.props: SystemMemory, SystemRuntimeCompilerServicesUnsafe, SystemThreadingTasksExtensions from 4.6.0/6.1.0/4.6.0 to 4.6.3/6.1.2/4.6.3
- Update src/Directory.Build.targets: Update frozen maintenance package versions to match 10.0.0 package requirements
- Update binding redirects in app.config and app.amd64.config for System.Numerics.Vectors to 4.1.6.0

Co-authored-by: rainersigwald <3347530+rainersigwald@users.noreply.github.com>
The 4.6.x versions of System.* packages use net462 target framework folders,
not net461/net46. Updated Directory.Build.targets to reference the correct paths.

Co-authored-by: rainersigwald <3347530+rainersigwald@users.noreply.github.com>
Do not update frozen maintenance package versions as they are frozen for important reasons.
Reverted Directory.Build.targets to original state before my changes.

Note: Build currently fails with dependency conflicts between 10.0.0 runtime packages
and frozen maintenance package versions. Awaiting guidance on resolution approach.

Co-authored-by: rainersigwald <3347530+rainersigwald@users.noreply.github.com>
…ime-packages-to-10-0-0

# Conflicts:
#	src/MSBuild/app.amd64.config
#	src/MSBuild/app.config
@rainersigwald rainersigwald marked this pull request as ready for review January 21, 2026 14:19
@rainersigwald rainersigwald requested a review from a team as a code owner January 21, 2026 14:19
Copilot AI review requested due to automatic review settings January 21, 2026 14:19
<FrozenSystemTextJsonVersion>4.5.0</FrozenSystemTextJsonVersion>
<FrozenSystemThreadingChannelsVersion>4.7.1</FrozenSystemThreadingChannelsVersion>

<!-- In 10.x runtime packages started referencing live maintenance-packages outputs so pin several of them to 9.x -->
Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

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

Extending the logic we had here is getting pretty unwieldy, but I'd like to go with it for now to unblock the VS update (and because I don't have a better idea for how to keep older MSBuild-API-using apps working).

Copy link
Copy Markdown
Contributor

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.

Pull request overview

This PR updates assembly binding redirects and package references from .NET 9.0.x versions to .NET 10.0.x versions. This change coordinates with Visual Studio to ensure MSBuild uses the latest runtime package versions while maintaining backward compatibility through binding redirects.

Changes:

  • Updated NuGet package versions from 9.0.11 to 10.0.1 for runtime packages
  • Updated assembly binding redirects from 9.0.0.11 to 10.0.0.1 (and other assembly version updates)
  • Modified System.ValueTuple handling to no longer redistribute the DLL, relying on GAC redirection instead

Reviewed changes

Copilot reviewed 11 out of 11 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
src/Tasks/System.Resources.Extensions.pkgdef Updated version redirects from 9.0.0.11 to 10.0.0.1
src/Package/MSBuild.VSSetup/files.swr Removed System.ValueTuple.dll from distribution (no longer redistributed)
src/MSBuild/app.config Updated binding redirects for runtime packages to 10.0.0.1 and maintenance packages; added System.Threading.Channels redirect
src/MSBuild/app.amd64.config Updated binding redirects and codeBase hints for runtime packages; removed codeBase for System.ValueTuple
src/MSBuild/ValidateMSBuildPackageDependencyVersions.cs Added System.ValueTuple to ignore list and commented out special validation logic
src/MSBuild/MSBuild.csproj Added System.ValueTuple package reference with ExcludeAssets="Build"
src/Directory.Build.targets Added frozen version configuration for 9.0.11 runtime packages and expanded package download/reference replacement logic
eng/Versions.props Updated maintenance package versions (System.Memory, System.Runtime.CompilerServices.Unsafe, System.Threading.Tasks.Extensions); added System.ValueTuple version
eng/Version.Details.xml Updated all runtime package dependencies from 9.0.11 to 10.0.1
eng/Version.Details.props Updated all runtime package versions from 9.0.11 to 10.0.1
Directory.Packages.props Added System.ValueTuple package version entry

Comment on lines +158 to +159
<FrozenSystemTextJsonVersion>4.5.0</FrozenSystemTextJsonVersion>
<FrozenSystemThreadingChannelsVersion>4.7.1</FrozenSystemThreadingChannelsVersion>
Copy link

Copilot AI Jan 21, 2026

Choose a reason for hiding this comment

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

The properties FrozenSystemTextJsonVersion and FrozenSystemThreadingChannelsVersion are defined twice in this file. Lines 158-159 set them to 4.5.0 and 4.7.1 respectively, but then lines 172-173 override them with $(FrozenRuntimeVersionFor9) which equals 9.0.11. This means the first definitions are effectively ignored. Consider removing the duplicate definitions on lines 158-159 to avoid confusion.

Suggested change
<FrozenSystemTextJsonVersion>4.5.0</FrozenSystemTextJsonVersion>
<FrozenSystemThreadingChannelsVersion>4.7.1</FrozenSystemThreadingChannelsVersion>

Copilot uses AI. Check for mistakes.
Comment on lines 94 to 98
if (String.Equals(name, "System.ValueTuple", StringComparison.OrdinalIgnoreCase) &&
String.Equals(version, "4.0.0.0") && String.Equals(assemblyVersion, "4.0.3.0"))
{
foundSystemValueTuple = true;
// foundSystemValueTuple = true;
}
Copy link

Copilot AI Jan 21, 2026

Choose a reason for hiding this comment

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

The validation logic for System.ValueTuple is commented out but not removed. Since System.ValueTuple has been added to the assembliesToIgnore list on line 23, and the validation check is commented out on lines 97, 117-120, consider removing this dead code entirely (lines 94-98 and 117-120) to improve code clarity and maintainability.

Copilot uses AI. Check for mistakes.
// Microsoft.NET.StringTools uses API not available in net35, but since we need it to work for TaskHosts as well, there are simpler versions implemented for that. Ensure it's the right version.
// Microsoft.Activities.Build and XamlBuildTask are loaded within an AppDomain in the XamlBuildTask after having been loaded from the GAC elsewhere. See https://github.com/dotnet/msbuild/pull/856
private string[] assembliesToIgnore = { "Microsoft.Build.Conversion.Core", "Microsoft.NET.StringTools.net35", "Microsoft.Build.Engine", "Microsoft.Activities.Build", "XamlBuildTask" };
private string[] assembliesToIgnore = { "Microsoft.Build.Conversion.Core", "Microsoft.NET.StringTools.net35", "Microsoft.Build.Engine", "Microsoft.Activities.Build", "System.ValueTuple", "XamlBuildTask" };
Copy link

Copilot AI Jan 21, 2026

Choose a reason for hiding this comment

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

Field 'assembliesToIgnore' can be 'readonly'.

Suggested change
private string[] assembliesToIgnore = { "Microsoft.Build.Conversion.Core", "Microsoft.NET.StringTools.net35", "Microsoft.Build.Engine", "Microsoft.Activities.Build", "System.ValueTuple", "XamlBuildTask" };
private readonly string[] assembliesToIgnore = { "Microsoft.Build.Conversion.Core", "Microsoft.NET.StringTools.net35", "Microsoft.Build.Engine", "Microsoft.Activities.Build", "System.ValueTuple", "XamlBuildTask" };

Copilot uses AI. Check for mistakes.
YuliiaKovalova and others added 2 commits January 21, 2026 15:41
The .100 version delivered MetadataLoadContext 10.0.0.0 but we now referenced 10.0.0.1. Bump it.
@ViktorHofer
Copy link
Copy Markdown
Member

@YuliiaKovalova what is 62ef282 for in this PR?

@YuliiaKovalova
Copy link
Copy Markdown
Member

@YuliiaKovalova what is 62ef282 for in this PR?

while I was investigating the test failure I made cleanup. The coverage matrix is the same

@rainersigwald
Copy link
Copy Markdown
Member Author

It's not strictly required here and I want to revisit the cleanup but I don't want to reset the PR job queue for this PR :(

@ViktorHofer
Copy link
Copy Markdown
Member

Please next time avoid doing that as part of an unrelated PR. I only noticed this because I again checked this PR out. The DetermineExpectedNodeReuse clean-up is very nice (thanks for that!). I don't agree with the introduction of the other two methods from a code readability perspective. No worries but let's avoid this kind of situation going forward.

@rainersigwald rainersigwald enabled auto-merge (squash) January 21, 2026 17:37
@rainersigwald
Copy link
Copy Markdown
Member Author

We got test results from everything and Code Coverage is number 323 in queue to get a machine--I'm going to merge around it to hit the VS-side timeline.

github-actions bot pushed a commit to IntelliTect/Multitool that referenced this pull request Mar 16, 2026
Updated [Microsoft.Build](https://github.com/dotnet/msbuild) from 18.3.3
to 18.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Build's
releases](https://github.com/dotnet/msbuild/releases)._

## 18.4.0

## What's Changed
* Fix terminal logger quiet mode to show project context for
warnings/errors by @​Copilot in
dotnet/msbuild#12930
* Replace OpenTelemetry with Microsoft.VisualStudio.Telemetry for VS by
@​YuliiaKovalova in dotnet/msbuild#12843
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13050856 by @​dotnet-bot in
dotnet/msbuild#12982
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12979
* eliminate test data serialization warnings by @​JanProvaznik in
dotnet/msbuild#12983
* Add the feature flag that allows users to opt out automatic UTF8
console encoding by @​GangWang01 in
dotnet/msbuild#12637
* Polyfill clean up and source package organization by @​DustinCampbell
in dotnet/msbuild#12977
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13052367 by @​dotnet-bot in
dotnet/msbuild#12984
* Add documentation for enabling binlog collection via env var by
@​YuliiaKovalova in dotnet/msbuild#12805
* Support multiple binary logs from command line arguments by @​Copilot
in dotnet/msbuild#12706
* Add VcxprojReader.exe to ngenApplications by @​YuliiaKovalova in
dotnet/msbuild#12986
* Add HostServices support in Out-of-Process Task Host by
@​YuliiaKovalova in dotnet/msbuild#12753
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13002
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13000
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13078382 by @​dotnet-bot in
dotnet/msbuild#13003
* Add telemetry tracking for task factory names and runtime usage by
@​Copilot in dotnet/msbuild#12989
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12987
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13079827 by @​dotnet-bot in
dotnet/msbuild#13010
* Snap for VS 18.3 and update branding to VS 18.4 by @​Copilot in
dotnet/msbuild#13005
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13012
* Add telemetry to categorize build failure reasons by @​Copilot in
dotnet/msbuild#13007
* Update MicrosoftBuildVersion in analyzer template by
@​github-actions[bot] in dotnet/msbuild#13011
* Update OptProf drop metadata configuration by @​YuliiaKovalova in
dotnet/msbuild#13020
* Fix MSB1025 error when using DistributedFileLogger (-dfl flag) by
@​Copilot in dotnet/msbuild#13036
* CmdLine parsing was extracted from XMake and the implementation is
visible to dotnet (attempt 2) by @​MichalPavlik in
dotnet/msbuild#12836
* Make task environment path absolutization not throw. by @​AR-May in
dotnet/msbuild#13035
* Fix flaky test TestTerminalLoggerTogetherWithOtherLoggers by @​Copilot
in dotnet/msbuild#13044
* Enlighten more tasks that require no change by @​AR-May in
dotnet/msbuild#13045
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13050
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13048
* Add support for MSBUILD_LOGGING_ARGS by @​YuliiaKovalova in
dotnet/msbuild#12993
* Fix MSBuildEventSource by @​dfederm in
dotnet/msbuild#13030
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13124182 by @​dotnet-bot in
dotnet/msbuild#13053
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13031
* Add incrementality tracking support and more detailed analysis of the
build errors reported by @​YuliiaKovalova in
dotnet/msbuild#13057
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13055
* Enable com support for clr4 in task host by @​YuliiaKovalova in
dotnet/msbuild#13033
* Add 'rel/d18.3' to insertion target branch options by @​ViktorHofer in
dotnet/msbuild#13067
* add OriginalValue property to AbsolutePath by @​JanProvaznik in
dotnet/msbuild#13077
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13074
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137486 by @​dotnet-bot in
dotnet/msbuild#13075
* Refactor FileUtilities.cs and add methods for absolute paths. by
@​AR-May in dotnet/msbuild#13079
* Limit extended flag usage to NET and CLR4 runtimes by @​YuliiaKovalova
in dotnet/msbuild#13080
* [main] Update dependencies from nuget/nuget.client by
@​dotnet-maestro[bot] in dotnet/msbuild#13065
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137926 by @​dotnet-bot in
dotnet/msbuild#13081
* Update to 10.0.1 references by @​rainersigwald in
dotnet/msbuild#13072
* Undo COM support in out of proc task host CLR4 by @​YuliiaKovalova in
dotnet/msbuild#13089
* Add Managed Identity for bootstrapper creation by @​rainersigwald in
dotnet/msbuild#13092
* Add warning MSB4280 when DOTNET_HOST_PATH is set to a directory by
@​Copilot in dotnet/msbuild#13091
 ... (truncated)

Commits viewable in [compare
view](dotnet/msbuild@v18.3.3...v18.4.0).
</details>

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Microsoft.Build&package-manager=nuget&previous-version=18.3.3&new-version=18.4.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
premun pushed a commit to sharpliner/sharpliner that referenced this pull request Mar 16, 2026
Updated [Microsoft.Build.Framework](https://github.com/dotnet/msbuild)
from 18.3.3 to 18.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Build.Framework's
releases](https://github.com/dotnet/msbuild/releases)._

## 18.4.0

## What's Changed
* Fix terminal logger quiet mode to show project context for
warnings/errors by @​Copilot in
dotnet/msbuild#12930
* Replace OpenTelemetry with Microsoft.VisualStudio.Telemetry for VS by
@​YuliiaKovalova in dotnet/msbuild#12843
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13050856 by @​dotnet-bot in
dotnet/msbuild#12982
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12979
* eliminate test data serialization warnings by @​JanProvaznik in
dotnet/msbuild#12983
* Add the feature flag that allows users to opt out automatic UTF8
console encoding by @​GangWang01 in
dotnet/msbuild#12637
* Polyfill clean up and source package organization by @​DustinCampbell
in dotnet/msbuild#12977
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13052367 by @​dotnet-bot in
dotnet/msbuild#12984
* Add documentation for enabling binlog collection via env var by
@​YuliiaKovalova in dotnet/msbuild#12805
* Support multiple binary logs from command line arguments by @​Copilot
in dotnet/msbuild#12706
* Add VcxprojReader.exe to ngenApplications by @​YuliiaKovalova in
dotnet/msbuild#12986
* Add HostServices support in Out-of-Process Task Host by
@​YuliiaKovalova in dotnet/msbuild#12753
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13002
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13000
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13078382 by @​dotnet-bot in
dotnet/msbuild#13003
* Add telemetry tracking for task factory names and runtime usage by
@​Copilot in dotnet/msbuild#12989
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12987
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13079827 by @​dotnet-bot in
dotnet/msbuild#13010
* Snap for VS 18.3 and update branding to VS 18.4 by @​Copilot in
dotnet/msbuild#13005
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13012
* Add telemetry to categorize build failure reasons by @​Copilot in
dotnet/msbuild#13007
* Update MicrosoftBuildVersion in analyzer template by
@​github-actions[bot] in dotnet/msbuild#13011
* Update OptProf drop metadata configuration by @​YuliiaKovalova in
dotnet/msbuild#13020
* Fix MSB1025 error when using DistributedFileLogger (-dfl flag) by
@​Copilot in dotnet/msbuild#13036
* CmdLine parsing was extracted from XMake and the implementation is
visible to dotnet (attempt 2) by @​MichalPavlik in
dotnet/msbuild#12836
* Make task environment path absolutization not throw. by @​AR-May in
dotnet/msbuild#13035
* Fix flaky test TestTerminalLoggerTogetherWithOtherLoggers by @​Copilot
in dotnet/msbuild#13044
* Enlighten more tasks that require no change by @​AR-May in
dotnet/msbuild#13045
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13050
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13048
* Add support for MSBUILD_LOGGING_ARGS by @​YuliiaKovalova in
dotnet/msbuild#12993
* Fix MSBuildEventSource by @​dfederm in
dotnet/msbuild#13030
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13124182 by @​dotnet-bot in
dotnet/msbuild#13053
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13031
* Add incrementality tracking support and more detailed analysis of the
build errors reported by @​YuliiaKovalova in
dotnet/msbuild#13057
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13055
* Enable com support for clr4 in task host by @​YuliiaKovalova in
dotnet/msbuild#13033
* Add 'rel/d18.3' to insertion target branch options by @​ViktorHofer in
dotnet/msbuild#13067
* add OriginalValue property to AbsolutePath by @​JanProvaznik in
dotnet/msbuild#13077
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13074
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137486 by @​dotnet-bot in
dotnet/msbuild#13075
* Refactor FileUtilities.cs and add methods for absolute paths. by
@​AR-May in dotnet/msbuild#13079
* Limit extended flag usage to NET and CLR4 runtimes by @​YuliiaKovalova
in dotnet/msbuild#13080
* [main] Update dependencies from nuget/nuget.client by
@​dotnet-maestro[bot] in dotnet/msbuild#13065
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137926 by @​dotnet-bot in
dotnet/msbuild#13081
* Update to 10.0.1 references by @​rainersigwald in
dotnet/msbuild#13072
* Undo COM support in out of proc task host CLR4 by @​YuliiaKovalova in
dotnet/msbuild#13089
* Add Managed Identity for bootstrapper creation by @​rainersigwald in
dotnet/msbuild#13092
* Add warning MSB4280 when DOTNET_HOST_PATH is set to a directory by
@​Copilot in dotnet/msbuild#13091
 ... (truncated)

Commits viewable in [compare
view](dotnet/msbuild@v18.3.3...v18.4.0).
</details>

Updated
[Microsoft.Build.Utilities.Core](https://github.com/dotnet/msbuild) from
18.3.3 to 18.4.0.

<details>
<summary>Release notes</summary>

_Sourced from [Microsoft.Build.Utilities.Core's
releases](https://github.com/dotnet/msbuild/releases)._

## 18.4.0

## What's Changed
* Fix terminal logger quiet mode to show project context for
warnings/errors by @​Copilot in
dotnet/msbuild#12930
* Replace OpenTelemetry with Microsoft.VisualStudio.Telemetry for VS by
@​YuliiaKovalova in dotnet/msbuild#12843
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13050856 by @​dotnet-bot in
dotnet/msbuild#12982
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12979
* eliminate test data serialization warnings by @​JanProvaznik in
dotnet/msbuild#12983
* Add the feature flag that allows users to opt out automatic UTF8
console encoding by @​GangWang01 in
dotnet/msbuild#12637
* Polyfill clean up and source package organization by @​DustinCampbell
in dotnet/msbuild#12977
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13052367 by @​dotnet-bot in
dotnet/msbuild#12984
* Add documentation for enabling binlog collection via env var by
@​YuliiaKovalova in dotnet/msbuild#12805
* Support multiple binary logs from command line arguments by @​Copilot
in dotnet/msbuild#12706
* Add VcxprojReader.exe to ngenApplications by @​YuliiaKovalova in
dotnet/msbuild#12986
* Add HostServices support in Out-of-Process Task Host by
@​YuliiaKovalova in dotnet/msbuild#12753
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13002
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13000
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13078382 by @​dotnet-bot in
dotnet/msbuild#13003
* Add telemetry tracking for task factory names and runtime usage by
@​Copilot in dotnet/msbuild#12989
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#12987
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13079827 by @​dotnet-bot in
dotnet/msbuild#13010
* Snap for VS 18.3 and update branding to VS 18.4 by @​Copilot in
dotnet/msbuild#13005
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13012
* Add telemetry to categorize build failure reasons by @​Copilot in
dotnet/msbuild#13007
* Update MicrosoftBuildVersion in analyzer template by
@​github-actions[bot] in dotnet/msbuild#13011
* Update OptProf drop metadata configuration by @​YuliiaKovalova in
dotnet/msbuild#13020
* Fix MSB1025 error when using DistributedFileLogger (-dfl flag) by
@​Copilot in dotnet/msbuild#13036
* CmdLine parsing was extracted from XMake and the implementation is
visible to dotnet (attempt 2) by @​MichalPavlik in
dotnet/msbuild#12836
* Make task environment path absolutization not throw. by @​AR-May in
dotnet/msbuild#13035
* Fix flaky test TestTerminalLoggerTogetherWithOtherLoggers by @​Copilot
in dotnet/msbuild#13044
* Enlighten more tasks that require no change by @​AR-May in
dotnet/msbuild#13045
* [main] Update dependencies from dotnet/roslyn by @​dotnet-maestro[bot]
in dotnet/msbuild#13050
* [main] Update dependencies from dotnet/arcade by @​dotnet-maestro[bot]
in dotnet/msbuild#13048
* Add support for MSBUILD_LOGGING_ARGS by @​YuliiaKovalova in
dotnet/msbuild#12993
* Fix MSBuildEventSource by @​dfederm in
dotnet/msbuild#13030
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13124182 by @​dotnet-bot in
dotnet/msbuild#13053
* [main] Source code updates from dotnet/dotnet by @​dotnet-maestro[bot]
in dotnet/msbuild#13031
* Add incrementality tracking support and more detailed analysis of the
build errors reported by @​YuliiaKovalova in
dotnet/msbuild#13057
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13055
* Enable com support for clr4 in task host by @​YuliiaKovalova in
dotnet/msbuild#13033
* Add 'rel/d18.3' to insertion target branch options by @​ViktorHofer in
dotnet/msbuild#13067
* add OriginalValue property to AbsolutePath by @​JanProvaznik in
dotnet/msbuild#13077
* [automated] Merge branch 'vs18.3' => 'main' by @​github-actions[bot]
in dotnet/msbuild#13074
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137486 by @​dotnet-bot in
dotnet/msbuild#13075
* Refactor FileUtilities.cs and add methods for absolute paths. by
@​AR-May in dotnet/msbuild#13079
* Limit extended flag usage to NET and CLR4 runtimes by @​YuliiaKovalova
in dotnet/msbuild#13080
* [main] Update dependencies from nuget/nuget.client by
@​dotnet-maestro[bot] in dotnet/msbuild#13065
* Localized file check-in by OneLocBuild Task: Build definition ID 9434:
Build ID 13137926 by @​dotnet-bot in
dotnet/msbuild#13081
* Update to 10.0.1 references by @​rainersigwald in
dotnet/msbuild#13072
* Undo COM support in out of proc task host CLR4 by @​YuliiaKovalova in
dotnet/msbuild#13089
* Add Managed Identity for bootstrapper creation by @​rainersigwald in
dotnet/msbuild#13092
* Add warning MSB4280 when DOTNET_HOST_PATH is set to a directory by
@​Copilot in dotnet/msbuild#13091
 ... (truncated)

Commits viewable in [compare
view](dotnet/msbuild@v18.3.3...v18.4.0).
</details>

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

5 participants