Skip to content

Commit 20ed012

Browse files
[main] Source code updates from dotnet/dotnet (#11087)
* Backflow from https://github.com/dotnet/dotnet / 3e92251 build 281912 [[ commit created by automation ]] * Update dependencies from https://github.com/dotnet/dotnet build 281912 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.CodeAnalysis, Microsoft.DotNet.GenAPI, Microsoft.DotNet.Helix.Sdk (Version 10.0.0-beta.25420.121 -> 11.0.0-beta.25453.110) Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.NETCore.App.Ref, Microsoft.NETCore.Platforms, Microsoft.Private.Winforms, System.CodeDom, System.Configuration.ConfigurationManager, System.Diagnostics.EventLog, System.DirectoryServices, System.Drawing.Common, System.Formats.Nrbf, System.IO.Packaging, System.Private.Windows.Core.TestUtilities, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Runtime.Serialization.Formatters, System.Security.Cryptography.Xml, System.Security.Permissions, System.Windows.Extensions (Version 10.0.0-rc.1.25420.121 -> 10.0.0-rc.1.25453.110) Added Dependencies: Microsoft.Build.Framework, Microsoft.Build.Utilities.Core (Version 15.9.20) * Update dependencies from https://github.com/dotnet/dotnet build 282048 Updated Dependencies: Microsoft.DotNet.Arcade.Sdk, Microsoft.DotNet.CodeAnalysis, Microsoft.DotNet.GenAPI, Microsoft.DotNet.Helix.Sdk (Version 11.0.0-beta.25453.110 -> 11.0.0-beta.25454.102) Microsoft.Dotnet.WinForms.ProjectTemplates, Microsoft.NETCore.App.Ref, Microsoft.NETCore.Platforms, Microsoft.Private.Winforms, System.CodeDom, System.Configuration.ConfigurationManager, System.Diagnostics.EventLog, System.DirectoryServices, System.Drawing.Common, System.Formats.Nrbf, System.IO.Packaging, System.Private.Windows.Core.TestUtilities, System.Reflection.MetadataLoadContext, System.Resources.Extensions, System.Runtime.Serialization.Formatters, System.Security.Cryptography.Xml, System.Security.Permissions, System.Windows.Extensions (Version 10.0.0-rc.1.25453.110 -> 10.0.0-rc.1.25454.102) --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
1 parent 8223378 commit 20ed012

File tree

12 files changed

+106
-82
lines changed

12 files changed

+106
-82
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ while [[ -h $source ]]; do
1313
done
1414

1515
scriptroot="$( cd -P "$( dirname "$source" )" && pwd )"
16-
"$scriptroot/eng/common/build.sh" --build --restore $@
16+
"$scriptroot/eng/common/build.sh" --restore --build $@

eng/Build.props

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<Project>
2+
3+
<!-- Only build the Microsoft.NET.Sdk.WindowsDesktop package on non-Windows. -->
4+
<ItemGroup Condition="'$(OS)' != 'Windows_NT'">
5+
<ProjectToBuild Include="$(RepoRoot)packaging/Microsoft.NET.Sdk.WindowsDesktop/Microsoft.NET.Sdk.WindowsDesktop.ArchNeutral.csproj" />
6+
<ProjectToBuild Include="$(RepoRoot)packaging/Microsoft.Dotnet.Wpf.ProjectTemplates/Microsoft.DotNet.Wpf.ProjectTemplates.ArchNeutral.csproj" />
7+
</ItemGroup>
8+
9+
</Project>

eng/Tools.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<!-- Pre-download vcxproj dependencies as vcxprojs in this repo don't support NuGet package download. -->
9-
<ItemGroup>
9+
<ItemGroup Condition="'$(OS)' == 'Windows_NT'">
1010
<PackageDownload Include="Microsoft.NETCore.App.Ref" Version="[$(MicrosoftNETCoreAppRefVersion)]" Condition="'$(MicrosoftNETCoreAppRefVersion)' != ''" />
1111
<PackageDownload Include="Microsoft.NETCore.App.Runtime.$(_RuntimeIdentifier)" Version="[$(MicrosoftNETCoreAppRefVersion)]" Condition="'$(MicrosoftNETCoreAppRefVersion)' != ''" />
1212
<PackageDownload Include="Microsoft.NETCore.App.Host.$(_RuntimeIdentifier)" Version="[$(MicrosoftNETCoreAppRefVersion)]" Condition="'$(MicrosoftNETCoreAppRefVersion)' != ''" />

eng/Version.Details.props

Lines changed: 26 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<?xml version="1.0" encoding="utf-8"?>
21
<!--
32
This file is auto-generated by the Maestro dependency flow system.
43
Do not edit it manually, as it will get overwritten by automation.
@@ -7,36 +6,40 @@ This file should be imported by eng/Versions.props
76
<Project>
87
<PropertyGroup>
98
<!-- dotnet/dotnet dependencies -->
10-
<MicrosoftDotNetArcadeSdkPackageVersion>10.0.0-beta.25420.121</MicrosoftDotNetArcadeSdkPackageVersion>
11-
<MicrosoftDotNetCodeAnalysisPackageVersion>10.0.0-beta.25420.121</MicrosoftDotNetCodeAnalysisPackageVersion>
12-
<MicrosoftDotNetGenAPIPackageVersion>10.0.0-beta.25420.121</MicrosoftDotNetGenAPIPackageVersion>
13-
<MicrosoftDotNetHelixSdkPackageVersion>10.0.0-beta.25420.121</MicrosoftDotNetHelixSdkPackageVersion>
14-
<MicrosoftDotnetWinFormsProjectTemplatesPackageVersion>10.0.0-rc.1.25420.121</MicrosoftDotnetWinFormsProjectTemplatesPackageVersion>
15-
<MicrosoftNETCoreAppRefPackageVersion>10.0.0-rc.1.25420.121</MicrosoftNETCoreAppRefPackageVersion>
16-
<MicrosoftNETCorePlatformsPackageVersion>10.0.0-rc.1.25420.121</MicrosoftNETCorePlatformsPackageVersion>
17-
<MicrosoftPrivateWinformsPackageVersion>10.0.0-rc.1.25420.121</MicrosoftPrivateWinformsPackageVersion>
9+
<MicrosoftBuildFrameworkPackageVersion>15.9.20</MicrosoftBuildFrameworkPackageVersion>
10+
<MicrosoftBuildUtilitiesCorePackageVersion>15.9.20</MicrosoftBuildUtilitiesCorePackageVersion>
11+
<MicrosoftDotNetArcadeSdkPackageVersion>11.0.0-beta.25454.102</MicrosoftDotNetArcadeSdkPackageVersion>
12+
<MicrosoftDotNetCodeAnalysisPackageVersion>11.0.0-beta.25454.102</MicrosoftDotNetCodeAnalysisPackageVersion>
13+
<MicrosoftDotNetGenAPIPackageVersion>11.0.0-beta.25454.102</MicrosoftDotNetGenAPIPackageVersion>
14+
<MicrosoftDotNetHelixSdkPackageVersion>11.0.0-beta.25454.102</MicrosoftDotNetHelixSdkPackageVersion>
15+
<MicrosoftDotnetWinFormsProjectTemplatesPackageVersion>10.0.0-rc.1.25454.102</MicrosoftDotnetWinFormsProjectTemplatesPackageVersion>
16+
<MicrosoftNETCoreAppRefPackageVersion>10.0.0-rc.1.25454.102</MicrosoftNETCoreAppRefPackageVersion>
17+
<MicrosoftNETCorePlatformsPackageVersion>10.0.0-rc.1.25454.102</MicrosoftNETCorePlatformsPackageVersion>
18+
<MicrosoftPrivateWinformsPackageVersion>10.0.0-rc.1.25454.102</MicrosoftPrivateWinformsPackageVersion>
1819
<MicrosoftSourceLinkAzureReposGitPackageVersion>8.0.0-beta.23409.2</MicrosoftSourceLinkAzureReposGitPackageVersion>
1920
<MicrosoftSourceLinkGitHubPackageVersion>8.0.0-beta.23409.2</MicrosoftSourceLinkGitHubPackageVersion>
20-
<SystemCodeDomPackageVersion>10.0.0-rc.1.25420.121</SystemCodeDomPackageVersion>
21-
<SystemConfigurationConfigurationManagerPackageVersion>10.0.0-rc.1.25420.121</SystemConfigurationConfigurationManagerPackageVersion>
22-
<SystemDiagnosticsEventLogPackageVersion>10.0.0-rc.1.25420.121</SystemDiagnosticsEventLogPackageVersion>
23-
<SystemDirectoryServicesPackageVersion>10.0.0-rc.1.25420.121</SystemDirectoryServicesPackageVersion>
24-
<SystemDrawingCommonPackageVersion>10.0.0-rc.1.25420.121</SystemDrawingCommonPackageVersion>
25-
<SystemFormatsNrbfPackageVersion>10.0.0-rc.1.25420.121</SystemFormatsNrbfPackageVersion>
26-
<SystemIOPackagingPackageVersion>10.0.0-rc.1.25420.121</SystemIOPackagingPackageVersion>
27-
<SystemPrivateWindowsCoreTestUtilitiesPackageVersion>10.0.0-rc.1.25420.121</SystemPrivateWindowsCoreTestUtilitiesPackageVersion>
28-
<SystemReflectionMetadataLoadContextPackageVersion>10.0.0-rc.1.25420.121</SystemReflectionMetadataLoadContextPackageVersion>
29-
<SystemResourcesExtensionsPackageVersion>10.0.0-rc.1.25420.121</SystemResourcesExtensionsPackageVersion>
30-
<SystemRuntimeSerializationFormattersPackageVersion>10.0.0-rc.1.25420.121</SystemRuntimeSerializationFormattersPackageVersion>
31-
<SystemSecurityCryptographyXmlPackageVersion>10.0.0-rc.1.25420.121</SystemSecurityCryptographyXmlPackageVersion>
32-
<SystemSecurityPermissionsPackageVersion>10.0.0-rc.1.25420.121</SystemSecurityPermissionsPackageVersion>
33-
<SystemWindowsExtensionsPackageVersion>10.0.0-rc.1.25420.121</SystemWindowsExtensionsPackageVersion>
21+
<SystemCodeDomPackageVersion>10.0.0-rc.1.25454.102</SystemCodeDomPackageVersion>
22+
<SystemConfigurationConfigurationManagerPackageVersion>10.0.0-rc.1.25454.102</SystemConfigurationConfigurationManagerPackageVersion>
23+
<SystemDiagnosticsEventLogPackageVersion>10.0.0-rc.1.25454.102</SystemDiagnosticsEventLogPackageVersion>
24+
<SystemDirectoryServicesPackageVersion>10.0.0-rc.1.25454.102</SystemDirectoryServicesPackageVersion>
25+
<SystemDrawingCommonPackageVersion>10.0.0-rc.1.25454.102</SystemDrawingCommonPackageVersion>
26+
<SystemFormatsNrbfPackageVersion>10.0.0-rc.1.25454.102</SystemFormatsNrbfPackageVersion>
27+
<SystemIOPackagingPackageVersion>10.0.0-rc.1.25454.102</SystemIOPackagingPackageVersion>
28+
<SystemPrivateWindowsCoreTestUtilitiesPackageVersion>10.0.0-rc.1.25454.102</SystemPrivateWindowsCoreTestUtilitiesPackageVersion>
29+
<SystemReflectionMetadataLoadContextPackageVersion>10.0.0-rc.1.25454.102</SystemReflectionMetadataLoadContextPackageVersion>
30+
<SystemResourcesExtensionsPackageVersion>10.0.0-rc.1.25454.102</SystemResourcesExtensionsPackageVersion>
31+
<SystemRuntimeSerializationFormattersPackageVersion>10.0.0-rc.1.25454.102</SystemRuntimeSerializationFormattersPackageVersion>
32+
<SystemSecurityCryptographyXmlPackageVersion>10.0.0-rc.1.25454.102</SystemSecurityCryptographyXmlPackageVersion>
33+
<SystemSecurityPermissionsPackageVersion>10.0.0-rc.1.25454.102</SystemSecurityPermissionsPackageVersion>
34+
<SystemWindowsExtensionsPackageVersion>10.0.0-rc.1.25454.102</SystemWindowsExtensionsPackageVersion>
3435
<!-- _git/dotnet-wpf-int dependencies -->
3536
<MicrosoftDotNetWpfDncEngPackageVersion>10.0.0-preview.7.25317.2</MicrosoftDotNetWpfDncEngPackageVersion>
3637
</PropertyGroup>
3738
<!--Property group for alternate package version names-->
3839
<PropertyGroup>
3940
<!-- dotnet/dotnet dependencies -->
41+
<MicrosoftBuildFrameworkVersion>$(MicrosoftBuildFrameworkPackageVersion)</MicrosoftBuildFrameworkVersion>
42+
<MicrosoftBuildUtilitiesCoreVersion>$(MicrosoftBuildUtilitiesCorePackageVersion)</MicrosoftBuildUtilitiesCoreVersion>
4043
<MicrosoftDotNetArcadeSdkVersion>$(MicrosoftDotNetArcadeSdkPackageVersion)</MicrosoftDotNetArcadeSdkVersion>
4144
<MicrosoftDotNetCodeAnalysisVersion>$(MicrosoftDotNetCodeAnalysisPackageVersion)</MicrosoftDotNetCodeAnalysisVersion>
4245
<MicrosoftDotNetGenAPIVersion>$(MicrosoftDotNetGenAPIPackageVersion)</MicrosoftDotNetGenAPIVersion>

eng/Version.Details.xml

Lines changed: 53 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,96 +1,104 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Dependencies>
3-
<Source Uri="https://github.com/dotnet/dotnet" Mapping="wpf" Sha="c4dc56079d959dbdb7fc27ea8ad7f95194885923" BarId="280214" />
3+
<Source Uri="https://github.com/dotnet/dotnet" Mapping="wpf" Sha="9303fa2ba817e93495ead20a93200dfeeff61b23" BarId="282048" />
44
<ProductDependencies>
5-
<Dependency Name="Microsoft.Private.Winforms" Version="10.0.0-rc.1.25420.121">
5+
<Dependency Name="Microsoft.Private.Winforms" Version="10.0.0-rc.1.25454.102">
66
<Uri>https://github.com/dotnet/dotnet</Uri>
7-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
7+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
88
</Dependency>
9-
<Dependency Name="Microsoft.Dotnet.WinForms.ProjectTemplates" Version="10.0.0-rc.1.25420.121">
9+
<Dependency Name="Microsoft.Dotnet.WinForms.ProjectTemplates" Version="10.0.0-rc.1.25454.102">
1010
<Uri>https://github.com/dotnet/dotnet</Uri>
11-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
11+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
1212
</Dependency>
13-
<Dependency Name="System.Reflection.MetadataLoadContext" Version="10.0.0-rc.1.25420.121">
13+
<Dependency Name="System.Reflection.MetadataLoadContext" Version="10.0.0-rc.1.25454.102">
1414
<Uri>https://github.com/dotnet/dotnet</Uri>
15-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
15+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
1616
</Dependency>
17-
<Dependency Name="System.Windows.Extensions" Version="10.0.0-rc.1.25420.121">
17+
<Dependency Name="System.Windows.Extensions" Version="10.0.0-rc.1.25454.102">
1818
<Uri>https://github.com/dotnet/dotnet</Uri>
19-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
19+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
2020
</Dependency>
21-
<Dependency Name="Microsoft.NETCore.Platforms" Version="10.0.0-rc.1.25420.121">
21+
<Dependency Name="Microsoft.NETCore.Platforms" Version="10.0.0-rc.1.25454.102">
2222
<Uri>https://github.com/dotnet/dotnet</Uri>
23-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
23+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
2424
</Dependency>
2525
<Dependency Name="Microsoft.DotNet.Wpf.DncEng" Version="10.0.0-preview.7.25317.2">
2626
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-wpf-int</Uri>
2727
<Sha>8a6c1d81657ef04c040f598cafacf8f5a33abda2</Sha>
2828
</Dependency>
29-
<Dependency Name="System.Resources.Extensions" Version="10.0.0-rc.1.25420.121">
29+
<Dependency Name="System.Resources.Extensions" Version="10.0.0-rc.1.25454.102">
3030
<Uri>https://github.com/dotnet/dotnet</Uri>
31-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
31+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
3232
</Dependency>
33-
<Dependency Name="System.Runtime.Serialization.Formatters" Version="10.0.0-rc.1.25420.121">
33+
<Dependency Name="System.Runtime.Serialization.Formatters" Version="10.0.0-rc.1.25454.102">
3434
<Uri>https://github.com/dotnet/dotnet</Uri>
35-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
35+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
3636
</Dependency>
37-
<Dependency Name="Microsoft.NETCore.App.Ref" Version="10.0.0-rc.1.25420.121">
37+
<Dependency Name="Microsoft.NETCore.App.Ref" Version="10.0.0-rc.1.25454.102">
3838
<Uri>https://github.com/dotnet/dotnet</Uri>
39-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
39+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
4040
</Dependency>
41-
<Dependency Name="System.CodeDom" Version="10.0.0-rc.1.25420.121">
41+
<Dependency Name="System.CodeDom" Version="10.0.0-rc.1.25454.102">
4242
<Uri>https://github.com/dotnet/dotnet</Uri>
43-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
43+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
4444
</Dependency>
45-
<Dependency Name="System.Configuration.ConfigurationManager" Version="10.0.0-rc.1.25420.121">
45+
<Dependency Name="System.Configuration.ConfigurationManager" Version="10.0.0-rc.1.25454.102">
4646
<Uri>https://github.com/dotnet/dotnet</Uri>
47-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
47+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
4848
</Dependency>
49-
<Dependency Name="System.Diagnostics.EventLog" Version="10.0.0-rc.1.25420.121">
49+
<Dependency Name="System.Diagnostics.EventLog" Version="10.0.0-rc.1.25454.102">
5050
<Uri>https://github.com/dotnet/dotnet</Uri>
51-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
51+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
5252
</Dependency>
53-
<Dependency Name="System.DirectoryServices" Version="10.0.0-rc.1.25420.121">
53+
<Dependency Name="System.DirectoryServices" Version="10.0.0-rc.1.25454.102">
5454
<Uri>https://github.com/dotnet/dotnet</Uri>
55-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
55+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
5656
</Dependency>
57-
<Dependency Name="System.Formats.Nrbf" Version="10.0.0-rc.1.25420.121">
57+
<Dependency Name="System.Formats.Nrbf" Version="10.0.0-rc.1.25454.102">
5858
<Uri>https://github.com/dotnet/dotnet</Uri>
59-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
59+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
6060
</Dependency>
61-
<Dependency Name="System.IO.Packaging" Version="10.0.0-rc.1.25420.121">
61+
<Dependency Name="System.IO.Packaging" Version="10.0.0-rc.1.25454.102">
6262
<Uri>https://github.com/dotnet/dotnet</Uri>
63-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
63+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
6464
</Dependency>
65-
<Dependency Name="System.Security.Cryptography.Xml" Version="10.0.0-rc.1.25420.121">
65+
<Dependency Name="System.Security.Cryptography.Xml" Version="10.0.0-rc.1.25454.102">
6666
<Uri>https://github.com/dotnet/dotnet</Uri>
67-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
67+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
6868
</Dependency>
69-
<Dependency Name="System.Security.Permissions" Version="10.0.0-rc.1.25420.121">
69+
<Dependency Name="System.Security.Permissions" Version="10.0.0-rc.1.25454.102">
7070
<Uri>https://github.com/dotnet/dotnet</Uri>
71-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
71+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
7272
</Dependency>
73-
<Dependency Name="System.Drawing.Common" Version="10.0.0-rc.1.25420.121">
73+
<Dependency Name="System.Drawing.Common" Version="10.0.0-rc.1.25454.102">
7474
<Uri>https://github.com/dotnet/dotnet</Uri>
75-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
75+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
76+
</Dependency>
77+
<Dependency Name="Microsoft.Build.Framework" Version="15.9.20">
78+
<Uri>https://github.com/dotnet/dotnet</Uri>
79+
<Sha>520c71b5277fc1f72dbec14da03ca55205d6c8e5</Sha>
80+
</Dependency>
81+
<Dependency Name="Microsoft.Build.Utilities.Core" Version="15.9.20">
82+
<Uri>https://github.com/dotnet/dotnet</Uri>
83+
<Sha>520c71b5277fc1f72dbec14da03ca55205d6c8e5</Sha>
7684
</Dependency>
7785
</ProductDependencies>
7886
<ToolsetDependencies>
79-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.25420.121">
87+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="11.0.0-beta.25454.102">
8088
<Uri>https://github.com/dotnet/dotnet</Uri>
81-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
89+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
8290
</Dependency>
83-
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="10.0.0-beta.25420.121">
91+
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="11.0.0-beta.25454.102">
8492
<Uri>https://github.com/dotnet/dotnet</Uri>
85-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
93+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
8694
</Dependency>
87-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="10.0.0-beta.25420.121">
95+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="11.0.0-beta.25454.102">
8896
<Uri>https://github.com/dotnet/dotnet</Uri>
89-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
97+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
9098
</Dependency>
91-
<Dependency Name="Microsoft.DotNet.GenAPI" Version="10.0.0-beta.25420.121">
99+
<Dependency Name="Microsoft.DotNet.GenAPI" Version="11.0.0-beta.25454.102">
92100
<Uri>https://github.com/dotnet/dotnet</Uri>
93-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
101+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
94102
</Dependency>
95103
<!-- TODO: Unpin sourcelink dependencies: https://github.com/dotnet/wpf/issues/11042 -->
96104
<Dependency Name="Microsoft.SourceLink.AzureRepos.Git" Version="8.0.0-beta.23409.2" Pinned="true">
@@ -101,9 +109,9 @@
101109
<Uri>https://github.com/dotnet/dotnet</Uri>
102110
<Sha>e9f665e52848a3615736c099e5631af531b66a5c</Sha>
103111
</Dependency>
104-
<Dependency Name="System.Private.Windows.Core.TestUtilities" Version="10.0.0-rc.1.25420.121">
112+
<Dependency Name="System.Private.Windows.Core.TestUtilities" Version="10.0.0-rc.1.25454.102">
105113
<Uri>https://github.com/dotnet/dotnet</Uri>
106-
<Sha>c4dc56079d959dbdb7fc27ea8ad7f95194885923</Sha>
114+
<Sha>9303fa2ba817e93495ead20a93200dfeeff61b23</Sha>
107115
</Dependency>
108116
</ToolsetDependencies>
109117
</Dependencies>

eng/Versions.props

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@
3939
</PropertyGroup>
4040
<!-- Other Packages that require manual updating-->
4141
<PropertyGroup>
42-
<MicrosoftBuildFrameworkPackageVersion>15.9.20</MicrosoftBuildFrameworkPackageVersion>
43-
<MicrosoftBuildUtilitiesCorePackageVersion>15.9.20</MicrosoftBuildUtilitiesCorePackageVersion>
4442
<!--
4543
Also in global.json
4644
Used in Wpf.Cpp.PrivateTools.props/targets

eng/WpfArcadeSdk/tools/ApiCompat.targets

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
<RunNetFrameworkApiCompat Condition="'$(Net48CompatNeededProjects)'!=''
99
and $(Net48CompatNeededProjects.Contains('$(MSBuildProjectName);'))
1010
and !($(MSBuildProjectName.Contains('_wpftmp')))">true</RunNetFrameworkApiCompat>
11+
<RunNetFrameworkApiCompat Condition="'$(OS)' != 'Windows_NT'">false</RunNetFrameworkApiCompat>
1112
</PropertyGroup>
1213

1314
<!-- Only enable Ref API Compat for the lib projects using hand-crafted reference assemblies,

eng/common/core-templates/steps/generate-sbom.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# IgnoreDirectories - Directories to ignore for SBOM generation. This will be passed through to the CG component detector.
66

77
parameters:
8-
PackageVersion: 10.0.0
8+
PackageVersion: 11.0.0
99
BuildDropPath: '$(System.DefaultWorkingDirectory)/artifacts'
1010
PackageName: '.NET'
1111
ManifestDirPath: $(Build.ArtifactStagingDirectory)/sbom

eng/common/sdk-task.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ show_usage() {
1010

1111
echo "Advanced settings:"
1212
echo " --excludeCIBinarylog Don't output binary log (short: -nobl)"
13-
echo " --noWarnAsError Do not warn as error
13+
echo " --noWarnAsError Do not warn as error"
1414
echo ""
1515
echo "Command line arguments not listed above are passed thru to msbuild."
1616
}

global.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "10.0.100-rc.1.25411.109",
3+
"version": "10.0.100-rc.1.25420.111",
44
"allowPrerelease": true,
55
"rollForward": "latestFeature",
66
"paths": [
@@ -10,7 +10,7 @@
1010
"errorMessage": "The required .NET SDK wasn't found. Please run ./eng/common/dotnet.cmd/sh to install it."
1111
},
1212
"tools": {
13-
"dotnet": "10.0.100-rc.1.25411.109",
13+
"dotnet": "10.0.100-rc.1.25420.111",
1414
"runtimes": {
1515
"dotnet/x64": [
1616
"$(MicrosoftNETCorePlatformsVersion)"
@@ -24,8 +24,8 @@
2424
}
2525
},
2626
"msbuild-sdks": {
27-
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25420.121",
28-
"Microsoft.DotNet.Helix.Sdk": "10.0.0-beta.25420.121",
27+
"Microsoft.DotNet.Arcade.Sdk": "11.0.0-beta.25454.102",
28+
"Microsoft.DotNet.Helix.Sdk": "11.0.0-beta.25454.102",
2929
"Microsoft.Build.NoTargets": "3.7.56"
3030
},
3131
"native-tools": {

0 commit comments

Comments
 (0)