Skip to content

Commit c252660

Browse files
authored
[release/8.0.1xx] Update dependencies from dotnet/arcade (#44061)
2 parents 70bb861 + 4ddcae0 commit c252660

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
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.24504.2">
494+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.24508.1">
495495
<Uri>https://github.com/dotnet/arcade</Uri>
496-
<Sha>103916ccdbe7f4ab2e194068a1a3cd330542601f</Sha>
496+
<Sha>e5b13e054339e41d422212a0ecaf24fec20cb5a1</Sha>
497497
<SourceBuild RepoName="arcade" ManagedOnly="true" />
498498
</Dependency>
499-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.24504.2">
499+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.24508.1">
500500
<Uri>https://github.com/dotnet/arcade</Uri>
501-
<Sha>103916ccdbe7f4ab2e194068a1a3cd330542601f</Sha>
501+
<Sha>e5b13e054339e41d422212a0ecaf24fec20cb5a1</Sha>
502502
</Dependency>
503-
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.24504.2">
503+
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.24508.1">
504504
<Uri>https://github.com/dotnet/arcade</Uri>
505-
<Sha>103916ccdbe7f4ab2e194068a1a3cd330542601f</Sha>
505+
<Sha>e5b13e054339e41d422212a0ecaf24fec20cb5a1</Sha>
506506
</Dependency>
507-
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.24504.2">
507+
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.24508.1">
508508
<Uri>https://github.com/dotnet/arcade</Uri>
509-
<Sha>103916ccdbe7f4ab2e194068a1a3cd330542601f</Sha>
509+
<Sha>e5b13e054339e41d422212a0ecaf24fec20cb5a1</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
@@ -34,7 +34,7 @@
3434
<SystemCollectionsImmutablePackageVersion>7.0.0</SystemCollectionsImmutablePackageVersion>
3535
<SystemDiagnosticsFileVersionInfoVersion>4.0.0</SystemDiagnosticsFileVersionInfoVersion>
3636
<SystemReflectionMetadataVersion>7.0.0</SystemReflectionMetadataVersion>
37-
<MicrosoftDotNetSignToolVersion>8.0.0-beta.24504.2</MicrosoftDotNetSignToolVersion>
37+
<MicrosoftDotNetSignToolVersion>8.0.0-beta.24508.1</MicrosoftDotNetSignToolVersion>
3838
<MicrosoftWebXdtPackageVersion>7.0.0-preview.22423.2</MicrosoftWebXdtPackageVersion>
3939
<SystemSecurityCryptographyProtectedDataPackageVersion>8.0.0</SystemSecurityCryptographyProtectedDataPackageVersion>
4040
<SystemCollectionsSpecializedPackageVersion>4.3.0</SystemCollectionsSpecializedPackageVersion>
@@ -209,7 +209,7 @@
209209
<PropertyGroup>
210210
<FluentAssertionsVersion>6.12.0</FluentAssertionsVersion>
211211
<FluentAssertionsJsonVersion>6.1.0</FluentAssertionsJsonVersion>
212-
<MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.24504.2</MicrosoftDotNetXUnitExtensionsVersion>
212+
<MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.24508.1</MicrosoftDotNetXUnitExtensionsVersion>
213213
<MoqPackageVersion>4.18.4</MoqPackageVersion>
214214
<XunitCombinatorialVersion>1.3.2</XunitCombinatorialVersion>
215215
<MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>8.0.0-beta.23607.1</MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>

eng/common/tools.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -892,7 +892,7 @@ function IsWindowsPlatform() {
892892
}
893893

894894
function Get-Darc($version) {
895-
$darcPath = "$TempDir\darc\$(New-Guid)"
895+
$darcPath = "$TempDir\darc\$([guid]::NewGuid())"
896896
if ($version -ne $null) {
897897
& $PSScriptRoot\darc-init.ps1 -toolpath $darcPath -darcVersion $version | Out-Host
898898
} else {

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.108",
3+
"dotnet": "8.0.110",
44
"runtimes": {
55
"dotnet": [
66
"$(VSRedistCommonNetCoreSharedFrameworkx6480PackageVersion)"
@@ -14,7 +14,7 @@
1414
}
1515
},
1616
"msbuild-sdks": {
17-
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24504.2",
18-
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.24504.2"
17+
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24508.1",
18+
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.24508.1"
1919
}
2020
}

src/Tests/Microsoft.NET.Build.Tests/GivenThatWeWantToBuildAWindowsRuntimeComponent.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@ public void ManagedWinRTComponentCanBeReferenced()
100100
managedWinRTComponent.AdditionalProperties.Add("CsWinRTComponent", "true");
101101
managedWinRTComponent.AdditionalProperties.Add("PlatformTarget", "x64");
102102

103-
// TODO: Update to latest (currently 1.2.5) once it shows up on dotnet-public feed
104-
managedWinRTComponent.PackageReferences.Add(new TestPackageReference("Microsoft.Windows.CsWinRT", "1.2.3"));
103+
// TODO: Update to latest (currently 2.1.1) once it shows up on dotnet-public feed
104+
managedWinRTComponent.PackageReferences.Add(new TestPackageReference("Microsoft.Windows.CsWinRT", "2.1.1"));
105105

106106
managedWinRTComponent.SourceFiles["Coords.cs"] = @"using System;
107107

0 commit comments

Comments
 (0)