Skip to content

Commit 632beae

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20240131.4 (#8760)
[main] Update dependencies from dotnet/arcade
1 parent c799a93 commit 632beae

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -157,25 +157,25 @@
157157
</Dependency>
158158
</ProductDependencies>
159159
<ToolsetDependencies>
160-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24080.3">
160+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24081.4">
161161
<Uri>https://github.com/dotnet/arcade</Uri>
162-
<Sha>b4e9225c6c2f9da42fbb611a5e8942a08476fe89</Sha>
162+
<Sha>438a8e2488313fb3aa1b24a741a85c2669ee7e0d</Sha>
163163
</Dependency>
164-
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.24080.3">
164+
<Dependency Name="Microsoft.DotNet.CodeAnalysis" Version="9.0.0-beta.24081.4">
165165
<Uri>https://github.com/dotnet/arcade</Uri>
166-
<Sha>b4e9225c6c2f9da42fbb611a5e8942a08476fe89</Sha>
166+
<Sha>438a8e2488313fb3aa1b24a741a85c2669ee7e0d</Sha>
167167
</Dependency>
168-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.24080.3">
168+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.24081.4">
169169
<Uri>https://github.com/dotnet/arcade</Uri>
170-
<Sha>b4e9225c6c2f9da42fbb611a5e8942a08476fe89</Sha>
170+
<Sha>438a8e2488313fb3aa1b24a741a85c2669ee7e0d</Sha>
171171
</Dependency>
172172
<Dependency Name="Microsoft.DotNet.ApiCompat" Version="9.0.0-beta.24053.1">
173173
<Uri>https://github.com/dotnet/arcade</Uri>
174174
<Sha>f4e11a15c7b8a949d4a366e792a9843ff6e88cd5</Sha>
175175
</Dependency>
176-
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.24080.3">
176+
<Dependency Name="Microsoft.DotNet.GenAPI" Version="9.0.0-beta.24081.4">
177177
<Uri>https://github.com/dotnet/arcade</Uri>
178-
<Sha>b4e9225c6c2f9da42fbb611a5e8942a08476fe89</Sha>
178+
<Sha>438a8e2488313fb3aa1b24a741a85c2669ee7e0d</Sha>
179179
</Dependency>
180180
<Dependency Name="Microsoft.SourceLink.AzureRepos.Git" Version="8.0.0-beta.23409.2">
181181
<Uri>https://github.com/dotnet/sourcelink</Uri>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<!-- Packages that come from https://github.com/dotnet/arcade -->
5050
<PropertyGroup>
5151
<MicrosoftDotNetApiCompatVersion>9.0.0-beta.24053.1</MicrosoftDotNetApiCompatVersion>
52-
<MicrosoftDotNetCodeAnalysisPackageVersion>9.0.0-beta.24080.3</MicrosoftDotNetCodeAnalysisPackageVersion>
52+
<MicrosoftDotNetCodeAnalysisPackageVersion>9.0.0-beta.24081.4</MicrosoftDotNetCodeAnalysisPackageVersion>
5353
</PropertyGroup>
5454
<!-- Sourcelink -->
5555
<PropertyGroup>

eng/common/sdk-task.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ try {
6464
$GlobalJson.tools | Add-Member -Name "vs" -Value (ConvertFrom-Json "{ `"version`": `"16.5`" }") -MemberType NoteProperty
6565
}
6666
if( -not ($GlobalJson.tools.PSObject.Properties.Name -match "xcopy-msbuild" )) {
67-
$GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "17.8.1-2" -MemberType NoteProperty
67+
$GlobalJson.tools | Add-Member -Name "xcopy-msbuild" -Value "17.8.5" -MemberType NoteProperty
6868
}
6969
if ($GlobalJson.tools."xcopy-msbuild".Trim() -ine "none") {
7070
$xcopyMSBuildToolsFolder = InitializeXCopyMSBuild $GlobalJson.tools."xcopy-msbuild" -install $true

eng/common/tools.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,8 @@ function InitializeVisualStudioMSBuild([bool]$install, [object]$vsRequirements =
379379

380380
# If the version of msbuild is going to be xcopied,
381381
# use this version. Version matches a package here:
382-
# https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet-eng/NuGet/RoslynTools.MSBuild/versions/17.8.1-2
383-
$defaultXCopyMSBuildVersion = '17.8.1-2'
382+
# https://dev.azure.com/dnceng/public/_artifacts/feed/dotnet-eng/NuGet/RoslynTools.MSBuild/versions/17.8.5
383+
$defaultXCopyMSBuildVersion = '17.8.5'
384384

385385
if (!$vsRequirements) {
386386
if (Get-Member -InputObject $GlobalJson.tools -Name 'vs') {

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
}
1313
},
1414
"msbuild-sdks": {
15-
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24080.3",
16-
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.24080.3"
15+
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24081.4",
16+
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.24081.4"
1717
},
1818
"sdk": {
1919
"version": "9.0.100-alpha.1.23615.4"

0 commit comments

Comments
 (0)