Skip to content

Commit 64a8d60

Browse files
author
v-wuzhai
authored
[release/8.0.4xx] Update dependencies from dotnet/arcade (#48289)
2 parents c08f02b + 8c6ee8e commit 64a8d60

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -491,22 +491,22 @@
491491
</Dependency>
492492
</ProductDependencies>
493493
<ToolsetDependencies>
494-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.25204.7">
494+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.25208.7">
495495
<Uri>https://github.com/dotnet/arcade</Uri>
496-
<Sha>faa1471063676aca349da6b48c56dd0fc95aa869</Sha>
496+
<Sha>c7a36e53f91e41943746f97a8c183549364c5092</Sha>
497497
<SourceBuild RepoName="arcade" ManagedOnly="true" />
498498
</Dependency>
499-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.25204.7">
499+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.25208.7">
500500
<Uri>https://github.com/dotnet/arcade</Uri>
501-
<Sha>faa1471063676aca349da6b48c56dd0fc95aa869</Sha>
501+
<Sha>c7a36e53f91e41943746f97a8c183549364c5092</Sha>
502502
</Dependency>
503-
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.25204.7">
503+
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.25208.7">
504504
<Uri>https://github.com/dotnet/arcade</Uri>
505-
<Sha>faa1471063676aca349da6b48c56dd0fc95aa869</Sha>
505+
<Sha>c7a36e53f91e41943746f97a8c183549364c5092</Sha>
506506
</Dependency>
507-
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.25204.7">
507+
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.25208.7">
508508
<Uri>https://github.com/dotnet/arcade</Uri>
509-
<Sha>faa1471063676aca349da6b48c56dd0fc95aa869</Sha>
509+
<Sha>c7a36e53f91e41943746f97a8c183549364c5092</Sha>
510510
</Dependency>
511511
<Dependency Name="System.Reflection.MetadataLoadContext" Version="8.0.1">
512512
<Uri>https://dev.azure.com/dnceng/internal/_git/dotnet-runtime</Uri>

eng/Versions.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
<SystemCollectionsImmutablePackageVersion>8.0.0</SystemCollectionsImmutablePackageVersion>
3737
<SystemDiagnosticsFileVersionInfoVersion>4.0.0</SystemDiagnosticsFileVersionInfoVersion>
3838
<SystemReflectionMetadataVersion>8.0.0</SystemReflectionMetadataVersion>
39-
<MicrosoftDotNetSignToolVersion>8.0.0-beta.25204.7</MicrosoftDotNetSignToolVersion>
39+
<MicrosoftDotNetSignToolVersion>8.0.0-beta.25208.7</MicrosoftDotNetSignToolVersion>
4040
<MicrosoftWebXdtPackageVersion>7.0.0-preview.22423.2</MicrosoftWebXdtPackageVersion>
4141
<SystemSecurityCryptographyProtectedDataPackageVersion>8.0.0</SystemSecurityCryptographyProtectedDataPackageVersion>
4242
<SystemCollectionsSpecializedPackageVersion>4.3.0</SystemCollectionsSpecializedPackageVersion>
@@ -213,7 +213,7 @@
213213
<PropertyGroup>
214214
<FluentAssertionsVersion>6.12.0</FluentAssertionsVersion>
215215
<FluentAssertionsJsonVersion>6.1.0</FluentAssertionsJsonVersion>
216-
<MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.25204.7</MicrosoftDotNetXUnitExtensionsVersion>
216+
<MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.25208.7</MicrosoftDotNetXUnitExtensionsVersion>
217217
<MoqPackageVersion>4.18.4</MoqPackageVersion>
218218
<XunitCombinatorialVersion>1.3.2</XunitCombinatorialVersion>
219219
<MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>8.0.0-beta.23607.1</MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>

global.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"tools": {
3-
"dotnet": "8.0.114",
3+
"dotnet": "8.0.115",
44
"runtimes": {
55
"dotnet": [
66
"$(VSRedistCommonNetCoreSharedFrameworkx6480PackageVersion)"
@@ -14,7 +14,7 @@
1414
}
1515
},
1616
"msbuild-sdks": {
17-
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25204.7",
18-
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25204.7"
17+
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.25208.7",
18+
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.25208.7"
1919
}
2020
}

src/Tests/Microsoft.NET.Sdk.BlazorWebAssembly.Tests/WasmPublishIntegrationTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1081,7 +1081,7 @@ public void Publish_HostedApp_WithRidSpecifiedInCLI_Works()
10811081
AssertRIDPublishOuput(publishCommand, testInstance, hosted: true);
10821082
}
10831083

1084-
[ConditionalFact()]
1084+
[Fact(Skip = "https://github.com/dotnet/sdk/issues/44179")]
10851085
public void Publish_HostedApp_WithRidSpecifiedAsArgument_NoSelfContained_Works()
10861086
{
10871087
// Arrange

0 commit comments

Comments
 (0)