Skip to content

Commit

Permalink
[release/10.0.1xx-preview1] Update dependencies from dotnet/sdk (#22218)
Browse files Browse the repository at this point in the history
This pull request updates the following dependencies

## Coherency Updates

The following updates ensure that dependencies with a *CoherentParentDependency*
attribute were produced in a build used as input to the parent dependency's build.
See [Dependency Description Format](https://github.com/dotnet/arcade/blob/master/Documentation/DependencyDescriptionFormat.md#dependency-description-overview)

- **Coherency Updates**:
  - **Microsoft.AspNetCore.App.Ref**: from 10.0.0-preview.1.25107.4 to 10.0.0-preview.1.25119.3 (parent: Microsoft.NET.Sdk)

## From https://github.com/dotnet/sdk

- **Subscription**: d05b3a99-3aea-4518-81ec-4583c1153c08
- **Build**: 20250219.17
- **Date Produced**: February 20, 2025 12:12:28 AM UTC
- **Commit**: 3031aa88a71f7cf56cf27e563c05e8f1bb844cac
- **Branch**: refs/heads/release/10.0.1xx-preview1

- **Updates**:
  - **Microsoft.NET.Sdk**: [from 10.0.100-preview.1.25112.18 to 10.0.100-preview.1.25119.17][1]
  - **Microsoft.AspNetCore.App.Ref**: [from 10.0.0-preview.1.25107.4 to 10.0.0-preview.1.25119.3][2]

[1]: dotnet/sdk@854cc61...3031aa8
[2]: dotnet/aspnetcore@ddbe931...bdd2ba8
  • Loading branch information
dotnet-maestro[bot] authored Feb 21, 2025
1 parent 805cdc8 commit acf008f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
8 changes: 4 additions & 4 deletions eng/Version.Details.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Dependencies>
<ProductDependencies>
<Dependency Name="Microsoft.NET.Sdk" Version="10.0.100-preview.1.25112.18">
<Dependency Name="Microsoft.NET.Sdk" Version="10.0.100-preview.1.25119.17">
<Uri>https://github.com/dotnet/sdk</Uri>
<Sha>854cc61f42d7ff8006b4f21f48e6db3b260083c2</Sha>
<Sha>3031aa88a71f7cf56cf27e563c05e8f1bb844cac</Sha>
</Dependency>
<Dependency Name="Microsoft.NET.ILLink" Version="9.0.0-alpha.1.23556.4">
<Uri>https://github.com/dotnet/runtime</Uri>
Expand All @@ -18,9 +18,9 @@
<Sha>b98cabca124ca73be9247c5f7b6796c6ce55e816</Sha>
</Dependency>
<!-- This is required for our test apps to build; in some cases Microsoft.AspNetCore.App is pulled in, and when building test apps the build needs to be able to resolve that -->
<Dependency Name="Microsoft.AspNetCore.App.Ref" Version="10.0.0-preview.1.25107.4" CoherentParentDependency="Microsoft.NET.Sdk">
<Dependency Name="Microsoft.AspNetCore.App.Ref" Version="10.0.0-preview.1.25119.3" CoherentParentDependency="Microsoft.NET.Sdk">
<Uri>https://github.com/dotnet/aspnetcore</Uri>
<Sha>ddbe93118b58c82efcc930842caf0f182d53aa2f</Sha>
<Sha>bdd2ba8fabf743ad8089e61a670c96fd0bc04b51</Sha>
</Dependency>
<Dependency Name="Microsoft.NET.Workload.Emscripten.Current.Manifest-10.0.100.Transport" Version="10.0.0-preview.1.25077.1" CoherentParentDependency="Microsoft.NETCore.App.Ref">
<Uri>https://github.com/dotnet/emsdk</Uri>
Expand Down
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!--Package versions-->
<PropertyGroup>
<!-- Versions updated by maestro -->
<MicrosoftNETSdkPackageVersion>10.0.100-preview.1.25112.18</MicrosoftNETSdkPackageVersion>
<MicrosoftNETSdkPackageVersion>10.0.100-preview.1.25119.17</MicrosoftNETSdkPackageVersion>
<MicrosoftNETILLinkTasksPackageVersion>10.0.0-preview.1.25080.5</MicrosoftNETILLinkTasksPackageVersion>
<MicrosoftNETILLinkPackageVersion>9.0.0-alpha.1.23556.4</MicrosoftNETILLinkPackageVersion>
<MicrosoftDotNetBuildTasksFeedPackageVersion>9.0.0-beta.25058.5</MicrosoftDotNetBuildTasksFeedPackageVersion>
Expand Down
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"sdk": {
"version": "10.0.100-preview.1.25112.18"
"version": "10.0.100-preview.1.25119.17"
},
"tools": {
"dotnet": "10.0.100-preview.1.25112.18"
"dotnet": "10.0.100-preview.1.25119.17"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.25058.5"
Expand Down
2 changes: 0 additions & 2 deletions tests/dotnet/UnitTests/ProjectTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2053,7 +2053,6 @@ public void BuildAndExecuteAppWithWinExeOutputType (ApplePlatform platform, stri
[TestCase (ApplePlatform.iOS, "iossimulator-x64")]
[TestCase (ApplePlatform.MacOSX, "osx-arm64")]
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-x64")]
[Ignore ("https://github.com/dotnet/sdk/issues/46790")]
public void PublishAotDuringBuild (ApplePlatform platform, string runtimeIdentifiers)
{
var project = "MySimpleApp";
Expand All @@ -2071,7 +2070,6 @@ public void PublishAotDuringBuild (ApplePlatform platform, string runtimeIdentif
[TestCase (ApplePlatform.iOS, "ios-arm64")]
[TestCase (ApplePlatform.iOS, "iossimulator-arm64")]
[TestCase (ApplePlatform.MacCatalyst, "maccatalyst-arm64")]
[Ignore ("https://github.com/dotnet/sdk/issues/46790")]
public void BuildMyNativeAotAppWithTrimAnalysisWarning (ApplePlatform platform, string runtimeIdentifiers)
{
var project = "MyNativeAotAppWithTrimAnalysisWarning";
Expand Down

0 comments on commit acf008f

Please sign in to comment.