Skip to content

[main] Source code updates from dotnet/dotnet #49468

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

Merged
merged 16 commits into from
Jun 25, 2025
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
16 commits
Select commit Hold shift + click to select a range
601c741
Merging main into darc-main-9c426504-cf32-4925-b1a9-d5d072fa1d05
dotnet-maestro[bot] Jun 18, 2025
cd976d7
Update dependencies from https://github.com/dotnet/dotnet build 272212
dotnet-maestro[bot] Jun 18, 2025
2fe81c5
Update dependencies from https://github.com/dotnet/dotnet build 272322
dotnet-maestro[bot] Jun 19, 2025
dc20d22
Merge branch 'main' of https://github.com/dotnet/SDK into darc-main-9…
Jun 19, 2025
d730d9a
[VMR] Codeflow 9bcfe61-2fe81c5
dotnet-maestro[bot] Jun 20, 2025
7c15682
Update dependencies from https://github.com/dotnet/dotnet build 272389
dotnet-maestro[bot] Jun 20, 2025
559565b
[VMR] Codeflow 0e9898b-0e9898b
dotnet-maestro[bot] Jun 21, 2025
e7fdc87
Merging main into darc-main-9c426504-cf32-4925-b1a9-d5d072fa1d05
dotnet-maestro[bot] Jun 21, 2025
1108091
Update dependencies from https://github.com/dotnet/dotnet build 272596
dotnet-maestro[bot] Jun 21, 2025
18b8f38
Update dependencies from https://github.com/dotnet/dotnet build 272656
dotnet-maestro[bot] Jun 22, 2025
49f80c6
Update the baselines
Jun 23, 2025
a2e7d82
Merging main into darc-main-9c426504-cf32-4925-b1a9-d5d072fa1d05
dotnet-maestro[bot] Jun 24, 2025
7fe39c5
Update dependencies from https://github.com/dotnet/dotnet build 272780
dotnet-maestro[bot] Jun 24, 2025
87f5960
Merge branch 'main' into darc-main-9c426504-cf32-4925-b1a9-d5d072fa1d05
marcpopMSFT Jun 25, 2025
58ff144
[VMR] Codeflow 0b99617-7fe39c5
dotnet-maestro[bot] Jun 25, 2025
fde285c
Update dependencies from https://github.com/dotnet/dotnet build 272949
dotnet-maestro[bot] Jun 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
<HostOSName Condition="'$(HostOSName)' == '' AND $([MSBuild]::IsOSPlatform('ILLUMOS'))">illumos</HostOSName>
<HostOSName Condition="'$(HostOSName)' == '' AND '$(IsLinux)' == 'true'">linux</HostOSName>

<OSName Condition="'$(OSName)' == '' AND $(PortableTargetRid) != ''">$(PortableTargetRid.Substring(0, $(PortableTargetRid.LastIndexOf('-'))))</OSName>
<OSName Condition="'$(OSName)' == '' AND $(TargetRid) != ''">$(TargetRid.Substring(0, $(TargetRid.LastIndexOf('-'))))</OSName>
<OSName Condition="'$(OSName)' == ''">$(HostOSName)</OSName>
</PropertyGroup>
Expand Down
458 changes: 229 additions & 229 deletions eng/Version.Details.xml

Large diffs are not rendered by default.

224 changes: 112 additions & 112 deletions eng/Versions.props

Large diffs are not rendered by default.

6 changes: 0 additions & 6 deletions eng/common/core-templates/steps/source-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,6 @@ steps:
targetRidArgs='/p:TargetRid=${{ parameters.platform.targetRID }}'
fi

baseRidArgs=
if [ '${{ parameters.platform.baseRID }}' != '' ]; then
baseRidArgs='/p:BaseRid=${{ parameters.platform.baseRID }}'
fi

portableBuildArgs=
if [ '${{ parameters.platform.portableBuild }}' != '' ]; then
portableBuildArgs='/p:PortableBuild=${{ parameters.platform.portableBuild }}'
Expand All @@ -55,7 +50,6 @@ steps:
${{ parameters.platform.buildArguments }} \
$internalRuntimeDownloadArgs \
$targetRidArgs \
$baseRidArgs \
$portableBuildArgs \
displayName: Build

Expand Down
6 changes: 3 additions & 3 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"tools": {
"dotnet": "10.0.100-preview.6.25302.104",
"dotnet": "10.0.100-preview.6.25315.102",
"runtimes": {
"dotnet": [
"$(MicrosoftNETCorePlatformsPackageVersion)"
Expand All @@ -14,8 +14,8 @@
}
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25316.103",
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25316.103",
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25320.118",
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25320.118",
"Microsoft.Build.NoTargets": "3.7.0",
"Microsoft.Build.Traversal": "3.4.0"
}
Expand Down
5 changes: 2 additions & 3 deletions src/Layout/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,8 @@
<TargetRid Condition="'$(TargetRid)' == ''">$(OSName)-$(TargetArchitecture)</TargetRid>
<ProductMonikerRid>$(TargetRid)</ProductMonikerRid>

<PortableOSName Condition="'$(PortableOSName)' == ''">$(OSName)</PortableOSName>
<PortableRid>$(PortableOSName)-$(TargetArchitecture)</PortableRid>
<PortableProductMonikerRid>$(PortableRid)</PortableProductMonikerRid>
<PortableTargetRid Condition="'$(PortableTargetRid)' == ''">$(OSName)-$(TargetArchitecture)</PortableTargetRid>
<PortableProductMonikerRid>$(PortableTargetRid)</PortableProductMonikerRid>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Layout/redist/targets/GenerateBundledVersions.targets
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@
win-x86;
" />

<!-- ILCompiler target RIDs that are officially supported, plus the architecture we are building the product for (OutputRID). See:
<!-- ILCompiler target RIDs that are officially supported, plus the architecture we are building the product for (TargetRid). See:
https://github.com/dotnet/runtime/blob/main/src/installer/pkg/projects/Microsoft.DotNet.ILCompiler/ILCompilerRIDs.props -->
<ILCompilerSupportedRids Include="
@(Net90ILCompilerSupportedRids);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
"${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.wasm",
"${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm",
"${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm",
"${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Validation.wasm",
"${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm",
"${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm",
"${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.VisualBasic.Core.wasm",
Expand Down Expand Up @@ -267,6 +268,7 @@
"${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.ConfigurationExtensions.wasm.gz",
"${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Options.wasm.gz",
"${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Primitives.wasm.gz",
"${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Validation.wasm.gz",
"${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz",
"${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.wasm.gz",
"${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.VisualBasic.Core.wasm.gz",
Expand Down Expand Up @@ -539,6 +541,8 @@
"${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Options.wasm.gz",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Primitives.wasm.gz",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Validation.wasm",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.Extensions.Validation.wasm.gz",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz",
"${OutputPath}\\wwwroot\\_framework\\Microsoft.JSInterop.wasm",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,29 @@
"FileLength": -1,
"LastWriteTime": "0001-01-01T00:00:00+00:00"
},
{
"Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Validation.wasm",
"SourceId": "blazorwasm",
"SourceType": "Computed",
"ContentRoot": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Validation.wasm",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Primary",
"AssetMergeBehavior": "",
"AssetMergeSource": "",
"RelatedAsset": "",
"AssetTraitName": "WasmResource",
"AssetTraitValue": "runtime",
"Fingerprint": "__fingerprint__",
"Integrity": "__integrity__",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
"OriginalItemSpec": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\webcil\\Microsoft.Extensions.Validation.wasm",
"FileLength": -1,
"LastWriteTime": "0001-01-01T00:00:00+00:00"
},
{
"Identity": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm",
"SourceId": "blazorwasm",
Expand Down Expand Up @@ -6279,6 +6302,29 @@
"FileLength": -1,
"LastWriteTime": "0001-01-01T00:00:00+00:00"
},
{
"Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Validation.wasm.gz",
"SourceId": "blazorwasm",
"SourceType": "Computed",
"ContentRoot": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\",
"BasePath": "/",
"RelativePath": "_framework/Microsoft.Extensions.Validation.wasm.gz",
"AssetKind": "Build",
"AssetMode": "All",
"AssetRole": "Alternative",
"AssetMergeBehavior": "",
"AssetMergeSource": "",
"RelatedAsset": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Validation.wasm",
"AssetTraitName": "Content-Encoding",
"AssetTraitValue": "gzip",
"Fingerprint": "__fingerprint__",
"Integrity": "__integrity__",
"CopyToOutputDirectory": "PreserveNewest",
"CopyToPublishDirectory": "Never",
"OriginalItemSpec": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\_framework\\Microsoft.Extensions.Validation.wasm.gz",
"FileLength": -1,
"LastWriteTime": "0001-01-01T00:00:00+00:00"
},
{
"Identity": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz",
"SourceId": "blazorwasm",
Expand Down Expand Up @@ -12630,6 +12676,43 @@
}
]
},
{
"Route": "_framework/Microsoft.Extensions.Validation.wasm",
"AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.Extensions.Validation.wasm",
"Selectors": [],
"ResponseHeaders": [
{
"Name": "Accept-Ranges",
"Value": "bytes"
},
{
"Name": "Cache-Control",
"Value": "no-cache"
},
{
"Name": "Content-Length",
"Value": "__content-length__"
},
{
"Name": "Content-Type",
"Value": "application/wasm"
},
{
"Name": "ETag",
"Value": "__etag__"
},
{
"Name": "Last-Modified",
"Value": "__last-modified__"
}
],
"EndpointProperties": [
{
"Name": "integrity",
"Value": "__integrity__"
}
]
},
{
"Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm",
"AssetFile": "${ProjectPath}\\blazorwasm\\bin\\Debug\\${Tfm}\\wwwroot\\_framework\\Microsoft.JSInterop.WebAssembly.wasm",
Expand Down Expand Up @@ -23346,6 +23429,106 @@
}
]
},
{
"Route": "_framework/Microsoft.Extensions.Validation.wasm.gz",
"AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Validation.wasm.gz",
"Selectors": [],
"ResponseHeaders": [
{
"Name": "Accept-Ranges",
"Value": "bytes"
},
{
"Name": "Cache-Control",
"Value": "no-cache"
},
{
"Name": "Content-Encoding",
"Value": "gzip"
},
{
"Name": "Content-Length",
"Value": "__content-length__"
},
{
"Name": "Content-Type",
"Value": "application/wasm"
},
{
"Name": "ETag",
"Value": "__etag__"
},
{
"Name": "Last-Modified",
"Value": "__last-modified__"
},
{
"Name": "Vary",
"Value": "Content-Encoding"
}
],
"EndpointProperties": [
{
"Name": "integrity",
"Value": "__integrity__"
}
]
},
{
"Route": "_framework/Microsoft.Extensions.Validation.wasm",
"AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.Extensions.Validation.wasm.gz",
"Selectors": [
{
"Name": "Content-Encoding",
"Value": "gzip",
"Quality": "__quality__"
}
],
"ResponseHeaders": [
{
"Name": "Accept-Ranges",
"Value": "bytes"
},
{
"Name": "Cache-Control",
"Value": "no-cache"
},
{
"Name": "Content-Encoding",
"Value": "gzip"
},
{
"Name": "Content-Length",
"Value": "__content-length__"
},
{
"Name": "Content-Type",
"Value": "application/wasm"
},
{
"Name": "ETag",
"Value": "__etag__"
},
{
"Name": "ETag",
"Value": "__etag__"
},
{
"Name": "Last-Modified",
"Value": "__last-modified__"
},
{
"Name": "Vary",
"Value": "Content-Encoding"
}
],
"EndpointProperties": [
{
"Name": "integrity",
"Value": "__integrity__"
}
]
},
{
"Route": "_framework/Microsoft.JSInterop.WebAssembly.wasm.gz",
"AssetFile": "${ProjectPath}\\blazorwasm\\obj\\Debug\\${Tfm}\\compressed\\_framework\\Microsoft.JSInterop.WebAssembly.wasm.gz",
Expand Down
Loading