Skip to content

Commit ed5a1b0

Browse files
authored
[release/8.0.3xx] Update dependencies from dotnet/arcade (#39567)
2 parents d0fc590 + 56ab9fb commit ed5a1b0

File tree

4 files changed

+18
-16
lines changed

4 files changed

+18
-16
lines changed

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -475,22 +475,22 @@
475475
</Dependency>
476476
</ProductDependencies>
477477
<ToolsetDependencies>
478-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.24161.7">
478+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.24165.4">
479479
<Uri>https://github.com/dotnet/arcade</Uri>
480-
<Sha>cd10e5d3748676d70ae2b4d9c84f073eeb203cac</Sha>
480+
<Sha>f311667e0587f19c3fa9553a909975662107a351</Sha>
481481
<SourceBuild RepoName="arcade" ManagedOnly="true" />
482482
</Dependency>
483-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.24161.7">
483+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.24165.4">
484484
<Uri>https://github.com/dotnet/arcade</Uri>
485-
<Sha>cd10e5d3748676d70ae2b4d9c84f073eeb203cac</Sha>
485+
<Sha>f311667e0587f19c3fa9553a909975662107a351</Sha>
486486
</Dependency>
487-
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.24161.7">
487+
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.24165.4">
488488
<Uri>https://github.com/dotnet/arcade</Uri>
489-
<Sha>cd10e5d3748676d70ae2b4d9c84f073eeb203cac</Sha>
489+
<Sha>f311667e0587f19c3fa9553a909975662107a351</Sha>
490490
</Dependency>
491-
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.24161.7">
491+
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.24165.4">
492492
<Uri>https://github.com/dotnet/arcade</Uri>
493-
<Sha>cd10e5d3748676d70ae2b4d9c84f073eeb203cac</Sha>
493+
<Sha>f311667e0587f19c3fa9553a909975662107a351</Sha>
494494
</Dependency>
495495
<Dependency Name="System.Reflection.MetadataLoadContext" Version="8.0.0">
496496
<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.24161.7</MicrosoftDotNetSignToolVersion>
37+
<MicrosoftDotNetSignToolVersion>8.0.0-beta.24165.4</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.24161.7</MicrosoftDotNetXUnitExtensionsVersion>
212+
<MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.24165.4</MicrosoftDotNetXUnitExtensionsVersion>
213213
<MoqPackageVersion>4.18.4</MoqPackageVersion>
214214
<XunitCombinatorialVersion>1.3.2</XunitCombinatorialVersion>
215215
<MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>8.0.0-beta.23607.1</MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,14 +94,16 @@ jobs:
9494
inputs:
9595
targetType: inline
9696
script: |
97-
Add-Content -Path "$(Build.StagingDirectory)/ReleaseConfigs.txt" -Value $(BARBuildId)
98-
Add-Content -Path "$(Build.StagingDirectory)/ReleaseConfigs.txt" -Value "$(DefaultChannels)"
99-
Add-Content -Path "$(Build.StagingDirectory)/ReleaseConfigs.txt" -Value $(IsStableBuild)
97+
New-Item -Path "$(Build.StagingDirectory)/ReleaseConfigs" -ItemType Directory -Force
98+
$filePath = "$(Build.StagingDirectory)/ReleaseConfigs/ReleaseConfigs.txt"
99+
Add-Content -Path $filePath -Value $(BARBuildId)
100+
Add-Content -Path $filePath -Value "$(DefaultChannels)"
101+
Add-Content -Path $filePath -Value $(IsStableBuild)
100102
101103
- task: 1ES.PublishBuildArtifacts@1
102104
displayName: Publish ReleaseConfigs Artifact
103105
inputs:
104-
PathtoPublish: '$(Build.StagingDirectory)/ReleaseConfigs.txt'
106+
PathtoPublish: '$(Build.StagingDirectory)/ReleaseConfigs'
105107
PublishLocation: Container
106108
ArtifactName: ReleaseConfigs
107109

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515
},
1616
"msbuild-sdks": {
17-
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24161.7",
18-
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.24161.7"
17+
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24165.4",
18+
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.24165.4"
1919
}
2020
}

0 commit comments

Comments
 (0)