Skip to content

Commit e052d66

Browse files
[net11.0] Update dependencies from dotnet/dotnet (#24508)
This pull request updates the following dependencies ## From https://github.com/dotnet/dotnet - **Subscription**: [12359e24-a8af-4571-8364-53f91576a580](https://maestro.dot.net/subscriptions?search=12359e24-a8af-4571-8364-53f91576a580) - **Build**: [20260121.1](https://dev.azure.com/dnceng/internal/_build/results?buildId=2883997) ([298328](https://maestro.dot.net/channel/8298/github:dotnet:dotnet/build/298328)) - **Date Produced**: January 21, 2026 10:04:37 PM UTC - **Commit**: [4707d71d0936130c7ef3fe7c9e5f5f755561c8a8](dotnet/dotnet@4707d71) - **Branch**: [main](https://github.com/dotnet/dotnet/tree/main) - **Dependency Updates**: - From [11.0.0-alpha.1.26062.101 to 11.0.0-preview.1.26071.101][7] - Microsoft.NET.Runtime.MonoTargets.Sdk - Microsoft.NET.ILLink - Microsoft.NET.ILLink.Tasks - Microsoft.NETCore.App.Ref - From [11.0.0-beta.26062.101 to 11.0.0-beta.26071.101][7] - Microsoft.DotNet.Arcade.Sdk - Microsoft.DotNet.Build.Tasks.Feed - Microsoft.DotNet.SharedFramework.Sdk - From [0.11.5-alpha.26062.101 to 0.11.5-preview.26071.101][7] - Microsoft.DotNet.Cecil - From [11.0.100-alpha.1.26062.101 to 11.0.100-preview.1.26071.101][7] - Microsoft.NET.Sdk - From [11.0.100-alpha.26062.101 to 11.0.100-preview.1.26071.101][7] - Microsoft.TemplateEngine.Authoring.Tasks [7]: dotnet/dotnet@7b9ad20...4707d71
1 parent 9cc5cb9 commit e052d66

21 files changed

+11701
-11604
lines changed

Directory.Build.props

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,14 @@
1818
<!-- Fix transient dependency issue found by component governance 4.7.0 -> 4.7.1 brought by Microsoft.Build.Tasks.Core package -->
1919
<SystemSecurityCryptographyXmlPackageVersion>8.0.0</SystemSecurityCryptographyXmlPackageVersion>
2020
</PropertyGroup>
21+
22+
<PropertyGroup>
23+
<!-- workarounds for https://github.com/dotnet/runtime/issues/123503 -->
24+
<!-- https://github.com/dotnet/macios/issues/24558 -->
25+
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
26+
<EnableAotAnalyzer>false</EnableAotAnalyzer>
27+
<NoWarn>$(NoWarn);AD0001</NoWarn>
28+
</PropertyGroup>
29+
2130
<Import Project="Build.props" Condition="Exists('Build.props')" />
2231
</Project>

dotnet/targets/Xamarin.Shared.Sdk.props

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,8 +139,12 @@
139139

140140
<!-- Set the default RuntimeIdentifier when publishing -->
141141
<PropertyGroup Condition="'$(PublishRuntimeIdentifier)' == ''">
142+
<!--
142143
<PublishRuntimeIdentifier Condition="'$(_PlatformName)' == 'iOS'">ios-arm64</PublishRuntimeIdentifier>
143144
<PublishRuntimeIdentifier Condition="'$(_PlatformName)' == 'tvOS'">tvos-arm64</PublishRuntimeIdentifier>
145+
-->
146+
<!-- Disable the default PublishRuntimeIdentifier behavior: https://github.com/dotnet/sdk/pull/52566 -->
147+
<UseDefaultPublishRuntimeIdentifier>false</UseDefaultPublishRuntimeIdentifier>
144148
</PropertyGroup>
145149

146150
<!-- Now that we know the runtime identifier, we can determine if we're building for a simulator -->

dotnet/targets/Xamarin.Shared.Sdk.targets

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,7 @@
350350
ResolveReferences;
351351
_DetectSdkLocations;
352352
_GenerateBundleName;
353+
_CompileEntitlements;
353354
</_RunRidSpecificBuildDependsOn>
354355
</PropertyGroup>
355356

@@ -394,6 +395,7 @@
394395
_ProcessedColladaAssetsPath=$(_ProcessedColladaAssetsPath);
395396
_ProcessedTextureAtlasesPath=$(_ProcessedTextureAtlasesPath);
396397
_ProcessedCoreMLModelsPath=$(_ProcessedCoreMLModelsPath);
398+
_CompiledEntitlements=$(_CompiledEntitlements);
397399
_CompiledEntitlementsPath=$(_CompiledEntitlementsPath);
398400
</_RidSpecificProperties>
399401
</PropertyGroup>

eng/Version.Details.props

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ This file should be imported by eng/Versions.props
66
<Project>
77
<PropertyGroup>
88
<!-- dotnet/dotnet dependencies -->
9-
<MicrosoftDotNetArcadeSdkPackageVersion>11.0.0-beta.26062.101</MicrosoftDotNetArcadeSdkPackageVersion>
10-
<MicrosoftDotNetBuildTasksFeedPackageVersion>11.0.0-beta.26062.101</MicrosoftDotNetBuildTasksFeedPackageVersion>
11-
<MicrosoftDotNetCecilPackageVersion>0.11.5-alpha.26062.101</MicrosoftDotNetCecilPackageVersion>
12-
<MicrosoftDotNetSharedFrameworkSdkPackageVersion>11.0.0-beta.26062.101</MicrosoftDotNetSharedFrameworkSdkPackageVersion>
13-
<MicrosoftNETILLinkPackageVersion>11.0.0-alpha.1.26062.101</MicrosoftNETILLinkPackageVersion>
14-
<MicrosoftNETILLinkTasksPackageVersion>11.0.0-alpha.1.26062.101</MicrosoftNETILLinkTasksPackageVersion>
15-
<MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>11.0.0-alpha.1.26062.101</MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>
16-
<MicrosoftNETSdkPackageVersion>11.0.100-alpha.1.26062.101</MicrosoftNETSdkPackageVersion>
17-
<MicrosoftNETCoreAppRefPackageVersion>11.0.0-alpha.1.26062.101</MicrosoftNETCoreAppRefPackageVersion>
18-
<MicrosoftTemplateEngineAuthoringTasksPackageVersion>11.0.100-alpha.26062.101</MicrosoftTemplateEngineAuthoringTasksPackageVersion>
9+
<MicrosoftDotNetArcadeSdkPackageVersion>11.0.0-beta.26073.123</MicrosoftDotNetArcadeSdkPackageVersion>
10+
<MicrosoftDotNetBuildTasksFeedPackageVersion>11.0.0-beta.26073.123</MicrosoftDotNetBuildTasksFeedPackageVersion>
11+
<MicrosoftDotNetCecilPackageVersion>0.11.5-preview.26073.123</MicrosoftDotNetCecilPackageVersion>
12+
<MicrosoftDotNetSharedFrameworkSdkPackageVersion>11.0.0-beta.26073.123</MicrosoftDotNetSharedFrameworkSdkPackageVersion>
13+
<MicrosoftNETILLinkPackageVersion>11.0.0-preview.1.26073.123</MicrosoftNETILLinkPackageVersion>
14+
<MicrosoftNETILLinkTasksPackageVersion>11.0.0-preview.1.26073.123</MicrosoftNETILLinkTasksPackageVersion>
15+
<MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>11.0.0-preview.1.26073.123</MicrosoftNETRuntimeMonoTargetsSdkPackageVersion>
16+
<MicrosoftNETSdkPackageVersion>11.0.100-preview.1.26073.123</MicrosoftNETSdkPackageVersion>
17+
<MicrosoftNETCoreAppRefPackageVersion>11.0.0-preview.1.26073.123</MicrosoftNETCoreAppRefPackageVersion>
18+
<MicrosoftTemplateEngineAuthoringTasksPackageVersion>11.0.100-preview.1.26073.123</MicrosoftTemplateEngineAuthoringTasksPackageVersion>
1919
<!-- dotnet/macios dependencies -->
2020
<MicrosoftiOSSdknet100_260PackageVersion>26.0.11017</MicrosoftiOSSdknet100_260PackageVersion>
2121
<MicrosoftiOSSdknet100_262PackageVersion>26.2.10196</MicrosoftiOSSdknet100_262PackageVersion>

eng/Version.Details.xml

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
<Dependencies>
22
<ProductDependencies>
3-
<Dependency Name="Microsoft.NET.Sdk" Version="11.0.100-alpha.1.26062.101">
3+
<Dependency Name="Microsoft.NET.Sdk" Version="11.0.100-preview.1.26073.123">
44
<Uri>https://github.com/dotnet/dotnet</Uri>
5-
<Sha>7b9ad20ba1d45df5a99fdd9dedbf3bfe6a6fc24f</Sha>
5+
<Sha>9b1fccbc24a292cdfb153dfac7fec2744a13b62f</Sha>
66
</Dependency>
7-
<Dependency Name="Microsoft.NET.ILLink" Version="11.0.0-alpha.1.26062.101">
7+
<Dependency Name="Microsoft.NET.ILLink" Version="11.0.0-preview.1.26073.123">
88
<Uri>https://github.com/dotnet/dotnet</Uri>
9-
<Sha>7b9ad20ba1d45df5a99fdd9dedbf3bfe6a6fc24f</Sha>
9+
<Sha>9b1fccbc24a292cdfb153dfac7fec2744a13b62f</Sha>
1010
</Dependency>
11-
<Dependency Name="Microsoft.NET.ILLink.Tasks" Version="11.0.0-alpha.1.26062.101">
11+
<Dependency Name="Microsoft.NET.ILLink.Tasks" Version="11.0.0-preview.1.26073.123">
1212
<Uri>https://github.com/dotnet/dotnet</Uri>
13-
<Sha>7b9ad20ba1d45df5a99fdd9dedbf3bfe6a6fc24f</Sha>
13+
<Sha>9b1fccbc24a292cdfb153dfac7fec2744a13b62f</Sha>
1414
</Dependency>
15-
<Dependency Name="Microsoft.NET.Runtime.MonoTargets.Sdk" Version="11.0.0-alpha.1.26062.101">
15+
<Dependency Name="Microsoft.NET.Runtime.MonoTargets.Sdk" Version="11.0.0-preview.1.26073.123">
1616
<Uri>https://github.com/dotnet/dotnet</Uri>
17-
<Sha>7b9ad20ba1d45df5a99fdd9dedbf3bfe6a6fc24f</Sha>
17+
<Sha>9b1fccbc24a292cdfb153dfac7fec2744a13b62f</Sha>
1818
</Dependency>
1919
<!-- Set TRACKING_DOTNET_RUNTIME_SEPARATELY to something in Make.config if changing the version outside of dependency flow -->
20-
<Dependency Name="Microsoft.NETCore.App.Ref" Version="11.0.0-alpha.1.26062.101">
20+
<Dependency Name="Microsoft.NETCore.App.Ref" Version="11.0.0-preview.1.26073.123">
2121
<Uri>https://github.com/dotnet/dotnet</Uri>
22-
<Sha>7b9ad20ba1d45df5a99fdd9dedbf3bfe6a6fc24f</Sha>
22+
<Sha>9b1fccbc24a292cdfb153dfac7fec2744a13b62f</Sha>
2323
</Dependency>
24-
<Dependency Name="Microsoft.DotNet.Cecil" Version="0.11.5-alpha.26062.101">
24+
<Dependency Name="Microsoft.DotNet.Cecil" Version="0.11.5-preview.26073.123">
2525
<Uri>https://github.com/dotnet/dotnet</Uri>
26-
<Sha>7b9ad20ba1d45df5a99fdd9dedbf3bfe6a6fc24f</Sha>
26+
<Sha>9b1fccbc24a292cdfb153dfac7fec2744a13b62f</Sha>
2727
</Dependency>
2828
<!-- This is a subscription of the .NET 10/Xcode 26.0 versions of our packages -->
2929
<Dependency Name="Microsoft.MacCatalyst.Sdk.net10.0_26.0" Version="26.0.11017">
@@ -61,25 +61,25 @@
6161
</Dependency>
6262
</ProductDependencies>
6363
<ToolsetDependencies>
64-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="11.0.0-beta.26062.101">
64+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Feed" Version="11.0.0-beta.26073.123">
6565
<Uri>https://github.com/dotnet/dotnet</Uri>
66-
<Sha>7b9ad20ba1d45df5a99fdd9dedbf3bfe6a6fc24f</Sha>
66+
<Sha>9b1fccbc24a292cdfb153dfac7fec2744a13b62f</Sha>
6767
</Dependency>
68-
<Dependency Name="Microsoft.DotNet.SharedFramework.Sdk" Version="11.0.0-beta.26062.101">
68+
<Dependency Name="Microsoft.DotNet.SharedFramework.Sdk" Version="11.0.0-beta.26073.123">
6969
<Uri>https://github.com/dotnet/dotnet</Uri>
70-
<Sha>7b9ad20ba1d45df5a99fdd9dedbf3bfe6a6fc24f</Sha>
70+
<Sha>9b1fccbc24a292cdfb153dfac7fec2744a13b62f</Sha>
7171
</Dependency>
72-
<Dependency Name="Microsoft.TemplateEngine.Authoring.Tasks" Version="11.0.100-alpha.26062.101">
72+
<Dependency Name="Microsoft.TemplateEngine.Authoring.Tasks" Version="11.0.100-preview.1.26073.123">
7373
<Uri>https://github.com/dotnet/dotnet</Uri>
74-
<Sha>7b9ad20ba1d45df5a99fdd9dedbf3bfe6a6fc24f</Sha>
74+
<Sha>9b1fccbc24a292cdfb153dfac7fec2744a13b62f</Sha>
7575
</Dependency>
7676
<Dependency Name="Microsoft.DotNet.XHarness.iOS.Shared" Version="10.0.0-prerelease.25516.4">
7777
<Uri>https://github.com/dotnet/xharness</Uri>
7878
<Sha>88399512021dfa8b5f45d91f84c8ce6f0959b127</Sha>
7979
</Dependency>
80-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="11.0.0-beta.26062.101">
80+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="11.0.0-beta.26073.123">
8181
<Uri>https://github.com/dotnet/dotnet</Uri>
82-
<Sha>7b9ad20ba1d45df5a99fdd9dedbf3bfe6a6fc24f</Sha>
82+
<Sha>9b1fccbc24a292cdfb153dfac7fec2744a13b62f</Sha>
8383
<SourceBuild RepoName="arcade" ManagedOnly="true" />
8484
</Dependency>
8585
</ToolsetDependencies>

eng/common/core-templates/job/publish-build-assets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
# If it's not devdiv, it's dnceng
8181
${{ if ne(variables['System.TeamProject'], 'DevDiv') }}:
8282
name: NetCore1ESPool-Publishing-Internal
83-
image: windows.vs2019.amd64
83+
image: windows.vs2022.amd64
8484
os: windows
8585
steps:
8686
- ${{ if eq(parameters.is1ESPipeline, '') }}:

eng/common/core-templates/job/source-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
demands: ImageOverride -equals build.ubuntu.2204.amd64
6464
${{ if eq(variables['System.TeamProject'], 'internal') }}:
6565
name: $[replace(replace(eq(contains(coalesce(variables['System.PullRequest.TargetBranch'], variables['Build.SourceBranch'], 'refs/heads/main'), 'release'), 'true'), True, 'NetCore1ESPool-Svc-Internal'), False, 'NetCore1ESPool-Internal')]
66-
image: 1es-azurelinux-3
66+
image: Azure-Linux-3-Amd64
6767
os: linux
6868
${{ else }}:
6969
pool:

eng/common/core-templates/post-build/post-build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -293,11 +293,11 @@ stages:
293293
${{ else }}:
294294
${{ if eq(parameters.is1ESPipeline, true) }}:
295295
name: NetCore1ESPool-Publishing-Internal
296-
image: windows.vs2019.amd64
296+
image: windows.vs2022.amd64
297297
os: windows
298298
${{ else }}:
299299
name: NetCore1ESPool-Publishing-Internal
300-
demands: ImageOverride -equals windows.vs2019.amd64
300+
demands: ImageOverride -equals windows.vs2022.amd64
301301
steps:
302302
- template: /eng/common/core-templates/post-build/setup-maestro-vars.yml
303303
parameters:

eng/common/templates/variables/pool-providers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#
2424
# pool:
2525
# name: $(DncEngInternalBuildPool)
26-
# demands: ImageOverride -equals windows.vs2019.amd64
26+
# demands: ImageOverride -equals windows.vs2022.amd64
2727
variables:
2828
- ${{ if eq(variables['System.TeamProject'], 'internal') }}:
2929
- template: /eng/common/templates-official/variables/pool-providers.yml

global.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"sdk": {
3-
"version": "11.0.100-alpha.1.26062.101",
3+
"version": "11.0.100-preview.1.26073.123",
44
"paths": [
55
"builds/downloads/dotnet",
66
"$host$"
77
],
88
"errorMessage": "The .NET SDK could not be found, please run 'make dotnet -C builds'."
99
},
1010
"tools": {
11-
"dotnet": "11.0.100-alpha.1.26062.101"
11+
"dotnet": "11.0.100-preview.1.26073.123"
1212
},
1313
"msbuild-sdks": {
14-
"Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26062.101"
14+
"Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.26073.123"
1515
}
1616
}

0 commit comments

Comments
 (0)