File tree 4 files changed +19
-9
lines changed
4 files changed +19
-9
lines changed Original file line number Diff line number Diff line change 19
19
</Dependency >
20
20
</ProductDependencies >
21
21
<ToolsetDependencies >
22
- <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.25210 .1" >
22
+ <Dependency Name =" Microsoft.DotNet.Arcade.Sdk" Version =" 10.0.0-beta.25212 .1" >
23
23
<Uri >https://github.com/dotnet/arcade</Uri >
24
- <Sha >490307dc9bb09caf016b2fa96005ac8aaa89c4e7 </Sha >
24
+ <Sha >87401be5731aa537bbf4cb71d7800d1c74d5e429 </Sha >
25
25
</Dependency >
26
26
<!-- Intermediate is necessary for source build. -->
27
- <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 10.0.0-beta.25210 .1" >
27
+ <Dependency Name =" Microsoft.SourceBuild.Intermediate.arcade" Version =" 10.0.0-beta.25212 .1" >
28
28
<Uri >https://github.com/dotnet/arcade</Uri >
29
- <Sha >490307dc9bb09caf016b2fa96005ac8aaa89c4e7 </Sha >
29
+ <Sha >87401be5731aa537bbf4cb71d7800d1c74d5e429 </Sha >
30
30
<SourceBuild RepoName =" arcade" ManagedOnly =" true" />
31
31
</Dependency >
32
32
<!-- Dependencies required for source build. We'll still update manually -->
Original file line number Diff line number Diff line change @@ -91,8 +91,18 @@ steps:
91
91
script : |
92
92
Write-Host "Copying Linux Path"
93
93
$MBSIGN_APPFOLDER = '$(MBSIGN_APPFOLDER)'
94
- $MBSIGN_APPFOLDER = $MBSIGN_APPFOLDER -replace '/build', ''
95
- $MBSIGN_APPFOLDER = $MBSIGN_APPFOLDER + '/1.1.1032' + '/build'
94
+ $MBSIGN_APPFOLDER = ($MBSIGN_APPFOLDER -replace '/build', '')
95
+
96
+ $versionRegex = '\d+\.\d+\.\d+'
97
+ $package = Get-ChildItem -Path $MBSIGN_APPFOLDER -Directory |
98
+ Where-Object { $_.Name -match $versionRegex }
99
+
100
+ if ($package.Count -ne 1) {
101
+ Write-Host "There should be exactly one matching subfolder, but found $($package.Count)."
102
+ exit 1
103
+ }
104
+
105
+ $MBSIGN_APPFOLDER = $package[0].FullName + '/build'
96
106
$MBSIGN_APPFOLDER | Write-Host
97
107
$SignConfigPath = $MBSIGN_APPFOLDER + '/signconfig.xml'
98
108
Copy-Item -Path "$(MBSIGN_APPFOLDER)/signconfig.xml" -Destination $SignConfigPath -Force
Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<packages >
3
- <package id =" Microsoft.Guardian.Cli" version =" 0.109 .0" />
3
+ <package id =" Microsoft.Guardian.Cli" version =" 0.199 .0" />
4
4
</packages >
Original file line number Diff line number Diff line change 1
1
{
2
2
"tools" : {
3
- "dotnet" : " 10.0.100-preview.3.25167.3 "
3
+ "dotnet" : " 10.0.100-preview.3.25201.16 "
4
4
},
5
5
"msbuild-sdks" : {
6
- "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.25210 .1"
6
+ "Microsoft.DotNet.Arcade.Sdk" : " 10.0.0-beta.25212 .1"
7
7
}
8
8
}
You can’t perform that action at this time.
0 commit comments