Skip to content

Commit b375a87

Browse files
authored
[release/8.0.1xx] Update dependencies from dotnet/arcade (#42110)
2 parents 2f74595 + 3d0eb23 commit b375a87

File tree

5 files changed

+24
-18
lines changed

5 files changed

+24
-18
lines changed

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -483,22 +483,22 @@
483483
</Dependency>
484484
</ProductDependencies>
485485
<ToolsetDependencies>
486-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.24352.1">
486+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.24360.5">
487487
<Uri>https://github.com/dotnet/arcade</Uri>
488-
<Sha>8b879da4e449c48d99f3f642fc429379a64e8fe8</Sha>
488+
<Sha>c9efa535175049eb9cba06cae1f8c3d5dbe768a9</Sha>
489489
<SourceBuild RepoName="arcade" ManagedOnly="true" />
490490
</Dependency>
491-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.24352.1">
491+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="8.0.0-beta.24360.5">
492492
<Uri>https://github.com/dotnet/arcade</Uri>
493-
<Sha>8b879da4e449c48d99f3f642fc429379a64e8fe8</Sha>
493+
<Sha>c9efa535175049eb9cba06cae1f8c3d5dbe768a9</Sha>
494494
</Dependency>
495-
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.24352.1">
495+
<Dependency Name="Microsoft.DotNet.SignTool" Version="8.0.0-beta.24360.5">
496496
<Uri>https://github.com/dotnet/arcade</Uri>
497-
<Sha>8b879da4e449c48d99f3f642fc429379a64e8fe8</Sha>
497+
<Sha>c9efa535175049eb9cba06cae1f8c3d5dbe768a9</Sha>
498498
</Dependency>
499-
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.24352.1">
499+
<Dependency Name="Microsoft.DotNet.XUnitExtensions" Version="8.0.0-beta.24360.5">
500500
<Uri>https://github.com/dotnet/arcade</Uri>
501-
<Sha>8b879da4e449c48d99f3f642fc429379a64e8fe8</Sha>
501+
<Sha>c9efa535175049eb9cba06cae1f8c3d5dbe768a9</Sha>
502502
</Dependency>
503503
<Dependency Name="System.Reflection.MetadataLoadContext" Version="8.0.0">
504504
<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
@@ -33,7 +33,7 @@
3333
<SystemCollectionsImmutablePackageVersion>7.0.0</SystemCollectionsImmutablePackageVersion>
3434
<SystemDiagnosticsFileVersionInfoVersion>4.0.0</SystemDiagnosticsFileVersionInfoVersion>
3535
<SystemReflectionMetadataVersion>7.0.0</SystemReflectionMetadataVersion>
36-
<MicrosoftDotNetSignToolVersion>8.0.0-beta.24352.1</MicrosoftDotNetSignToolVersion>
36+
<MicrosoftDotNetSignToolVersion>8.0.0-beta.24360.5</MicrosoftDotNetSignToolVersion>
3737
<MicrosoftWebXdtPackageVersion>7.0.0-preview.22423.2</MicrosoftWebXdtPackageVersion>
3838
<SystemSecurityCryptographyProtectedDataPackageVersion>8.0.0</SystemSecurityCryptographyProtectedDataPackageVersion>
3939
<SystemCollectionsSpecializedPackageVersion>4.3.0</SystemCollectionsSpecializedPackageVersion>
@@ -206,7 +206,7 @@
206206
<PropertyGroup>
207207
<FluentAssertionsVersion>6.12.0</FluentAssertionsVersion>
208208
<FluentAssertionsJsonVersion>6.1.0</FluentAssertionsJsonVersion>
209-
<MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.24352.1</MicrosoftDotNetXUnitExtensionsVersion>
209+
<MicrosoftDotNetXUnitExtensionsVersion>8.0.0-beta.24360.5</MicrosoftDotNetXUnitExtensionsVersion>
210210
<MoqPackageVersion>4.18.4</MoqPackageVersion>
211211
<XunitCombinatorialVersion>1.3.2</XunitCombinatorialVersion>
212212
<MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>8.0.0-beta.23607.1</MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion>

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,14 @@ jobs:
140140
BARBuildId: ${{ parameters.BARBuildId }}
141141
PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }}
142142

143-
- task: PowerShell@2
143+
- task: AzureCLI@2
144144
displayName: Publish Using Darc
145145
inputs:
146-
filePath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1
147-
arguments: -BuildId $(BARBuildId)
146+
azureSubscription: "Darc: Maestro Production"
147+
scriptType: ps
148+
scriptLocation: scriptPath
149+
scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1
150+
arguments: -BuildId $(BARBuildId)
148151
-PublishingInfraVersion 3
149152
-AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)'
150153
-WaitPublishingFinish true

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

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,14 @@ jobs:
136136
BARBuildId: ${{ parameters.BARBuildId }}
137137
PromoteToChannelIds: ${{ parameters.PromoteToChannelIds }}
138138

139-
- task: PowerShell@2
139+
- task: AzureCLI@2
140140
displayName: Publish Using Darc
141141
inputs:
142-
filePath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1
143-
arguments: -BuildId $(BARBuildId)
142+
azureSubscription: "Darc: Maestro Production"
143+
scriptType: ps
144+
scriptLocation: scriptPath
145+
scriptPath: $(Build.SourcesDirectory)/eng/common/post-build/publish-using-darc.ps1
146+
arguments: -BuildId $(BARBuildId)
144147
-PublishingInfraVersion 3
145148
-AzdoToken '$(publishing-dnceng-devdiv-code-r-build-re)'
146149
-WaitPublishingFinish true

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.24352.1",
18-
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.24352.1"
17+
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.24360.5",
18+
"Microsoft.DotNet.Helix.Sdk": "8.0.0-beta.24360.5"
1919
}
2020
}

0 commit comments

Comments
 (0)