[main] Source code updates from dotnet/dotnet#14741
Merged
dotnet-maestro[bot] merged 3 commits intoJul 17, 2026
Merged
Conversation
Updated Dependencies: Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.CMake.Sdk, Microsoft.DotNet.GenFacades, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.RemoteExecutor, Microsoft.DotNet.XUnitV3Extensions (Version 11.0.0-beta.26363.117 -> 11.0.0-beta.26364.110) Microsoft.NET.Sdk.IL, Microsoft.NETCore.App.Ref, Microsoft.NETCore.ILAsm, Microsoft.NETCore.ILDAsm, Microsoft.Win32.SystemEvents, runtime.win-x64.Microsoft.NETCore.ILAsm, System.CodeDom, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Nrbf, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Runtime.Serialization.Formatters, System.Text.Encodings.Web, System.Text.Json, System.Windows.Extensions, runtime.win-x86.Microsoft.NETCore.ILAsm (Version 11.0.0-preview.7.26363.117 -> 11.0.0-preview.7.26364.110) [[ commit created by automation ]]
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Updated Dependencies: Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.Build.Tasks.Templating, Microsoft.DotNet.CMake.Sdk, Microsoft.DotNet.GenFacades, Microsoft.DotNet.Helix.Sdk, Microsoft.DotNet.RemoteExecutor, Microsoft.DotNet.XUnitV3Extensions (Version 11.0.0-beta.26364.110 -> 11.0.0-beta.26365.101) Microsoft.NET.Sdk.IL, Microsoft.NETCore.App.Ref, Microsoft.NETCore.ILAsm, Microsoft.NETCore.ILDAsm, Microsoft.Win32.SystemEvents, runtime.win-x64.Microsoft.NETCore.ILAsm, System.CodeDom, System.Configuration.ConfigurationManager, System.Diagnostics.DiagnosticSource, System.Formats.Nrbf, System.IO.Hashing, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Runtime.Serialization.Formatters, System.Text.Encodings.Web, System.Text.Json, System.Windows.Extensions, runtime.win-x86.Microsoft.NETCore.ILAsm (Version 11.0.0-preview.7.26364.110 -> 11.0.0-preview.7.26365.101) [[ commit created by automation ]]
dotnet-maestro
Bot
dismissed
dotnet-policy-service[bot]’s stale review
via
July 16, 2026 02:26
bf8702a
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Member
|
/azp run dotnet-winforms CI |
|
Azure Pipelines: Successfully started running 1 pipeline(s). |
Before, the test did this:
[InlineData(1.2)]
public void ... (double value)
{
Assert.Equal((decimal)value, dec.ToDecimal());
}
That made the expected value depend on converting the double test input at runtime. After the recent test dependency update, that path started producing a slightly different decimal value for non-integer doubles like 1.2 .
Now the test does this instead:
yield return new object[] { 1.2, 1.2m };
and asserts against the explicit expected decimal:
Assert.Equal(expected, dec.ToDecimal());
So the test now verifies the actual Win32/OleAut32 decimal result directly, instead of relying on double -> decimal conversion in the test framework path.
Shyam-Gupta
approved these changes
Jul 17, 2026
Shyam-Gupta
left a comment
Member
There was a problem hiding this comment.
Approving automatically so this maestro PR can be merged once required checks succeed.
Shyam-Gupta
approved these changes
Jul 17, 2026
Shyam-Gupta
left a comment
Member
There was a problem hiding this comment.
Approving automatically so this maestro PR can be merged once required checks succeed.
yaqiyang
approved these changes
Jul 17, 2026
dotnet-maestro
Bot
deleted the
darc-main-d9eef4d6-94b1-4231-9648-ce480b5b0001
branch
July 17, 2026 15:34
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
This is a codeflow update. It may contain both source code changes from
the VMR
as well as dependency updates. Learn more here.
This pull request brings the following source code changes
From https://github.com/dotnet/dotnet
Updated Dependencies
Microsoft Reviewers: Open in CodeFlow
Associated changes in source repos
Diff the source with this PR branch