File tree Expand file tree Collapse file tree 4 files changed +18
-16
lines changed
common/templates-official/job Expand file tree Collapse file tree 4 files changed +18
-16
lines changed Original file line number Diff line number Diff line change 475
475
</Dependency >
476
476
</ProductDependencies >
477
477
<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 " >
479
479
<Uri >https://github.com/dotnet/arcade</Uri >
480
- <Sha >cd10e5d3748676d70ae2b4d9c84f073eeb203cac </Sha >
480
+ <Sha >f311667e0587f19c3fa9553a909975662107a351 </Sha >
481
481
<SourceBuild RepoName =" arcade" ManagedOnly =" true" />
482
482
</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 " >
484
484
<Uri >https://github.com/dotnet/arcade</Uri >
485
- <Sha >cd10e5d3748676d70ae2b4d9c84f073eeb203cac </Sha >
485
+ <Sha >f311667e0587f19c3fa9553a909975662107a351 </Sha >
486
486
</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 " >
488
488
<Uri >https://github.com/dotnet/arcade</Uri >
489
- <Sha >cd10e5d3748676d70ae2b4d9c84f073eeb203cac </Sha >
489
+ <Sha >f311667e0587f19c3fa9553a909975662107a351 </Sha >
490
490
</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 " >
492
492
<Uri >https://github.com/dotnet/arcade</Uri >
493
- <Sha >cd10e5d3748676d70ae2b4d9c84f073eeb203cac </Sha >
493
+ <Sha >f311667e0587f19c3fa9553a909975662107a351 </Sha >
494
494
</Dependency >
495
495
<Dependency Name =" System.Reflection.MetadataLoadContext" Version =" 8.0.0" >
496
496
<Uri >https://dev.azure.com/dnceng/internal/_git/dotnet-runtime</Uri >
Original file line number Diff line number Diff line change 34
34
<SystemCollectionsImmutablePackageVersion >7.0.0</SystemCollectionsImmutablePackageVersion >
35
35
<SystemDiagnosticsFileVersionInfoVersion >4.0.0</SystemDiagnosticsFileVersionInfoVersion >
36
36
<SystemReflectionMetadataVersion >7.0.0</SystemReflectionMetadataVersion >
37
- <MicrosoftDotNetSignToolVersion >8.0.0-beta.24161.7 </MicrosoftDotNetSignToolVersion >
37
+ <MicrosoftDotNetSignToolVersion >8.0.0-beta.24165.4 </MicrosoftDotNetSignToolVersion >
38
38
<MicrosoftWebXdtPackageVersion >7.0.0-preview.22423.2</MicrosoftWebXdtPackageVersion >
39
39
<SystemSecurityCryptographyProtectedDataPackageVersion >8.0.0</SystemSecurityCryptographyProtectedDataPackageVersion >
40
40
<SystemCollectionsSpecializedPackageVersion >4.3.0</SystemCollectionsSpecializedPackageVersion >
209
209
<PropertyGroup >
210
210
<FluentAssertionsVersion >6.12.0</FluentAssertionsVersion >
211
211
<FluentAssertionsJsonVersion >6.1.0</FluentAssertionsJsonVersion >
212
- <MicrosoftDotNetXUnitExtensionsVersion >8.0.0-beta.24161.7 </MicrosoftDotNetXUnitExtensionsVersion >
212
+ <MicrosoftDotNetXUnitExtensionsVersion >8.0.0-beta.24165.4 </MicrosoftDotNetXUnitExtensionsVersion >
213
213
<MoqPackageVersion >4.18.4</MoqPackageVersion >
214
214
<XunitCombinatorialVersion >1.3.2</XunitCombinatorialVersion >
215
215
<MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion >8.0.0-beta.23607.1</MicrosoftDotNetInstallerWindowsSecurityTestDataPackageVersion >
Original file line number Diff line number Diff line change @@ -94,14 +94,16 @@ jobs:
94
94
inputs :
95
95
targetType : inline
96
96
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)
100
102
101
103
- task : 1ES.PublishBuildArtifacts@1
102
104
displayName : Publish ReleaseConfigs Artifact
103
105
inputs :
104
- PathtoPublish : ' $(Build.StagingDirectory)/ReleaseConfigs.txt '
106
+ PathtoPublish : ' $(Build.StagingDirectory)/ReleaseConfigs'
105
107
PublishLocation : Container
106
108
ArtifactName : ReleaseConfigs
107
109
Original file line number Diff line number Diff line change 14
14
}
15
15
},
16
16
"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 "
19
19
}
20
20
}
You can’t perform that action at this time.
0 commit comments