[main] Update dependencies from dotnet/arcade (#16727)
This commit is contained in:
commit
ed4124f33c
4 changed files with 15 additions and 11 deletions
|
@ -202,18 +202,18 @@
|
|||
</Dependency>
|
||||
</ProductDependencies>
|
||||
<ToolsetDependencies>
|
||||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23314.1">
|
||||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="8.0.0-beta.23316.6">
|
||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||
<Sha>c27937680063bcf06804c9fd0466d26a0f9ea4e6</Sha>
|
||||
<Sha>e2334b2be36919347923d0ec872a46acddb1e385</Sha>
|
||||
<SourceBuild RepoName="arcade" ManagedOnly="true" />
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="8.0.0-beta.23314.1">
|
||||
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="8.0.0-beta.23316.6">
|
||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||
<Sha>c27937680063bcf06804c9fd0466d26a0f9ea4e6</Sha>
|
||||
<Sha>e2334b2be36919347923d0ec872a46acddb1e385</Sha>
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="8.0.0-beta.23314.1">
|
||||
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="8.0.0-beta.23316.6">
|
||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||
<Sha>c27937680063bcf06804c9fd0466d26a0f9ea4e6</Sha>
|
||||
<Sha>e2334b2be36919347923d0ec872a46acddb1e385</Sha>
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.23307.2">
|
||||
<Uri>https://github.com/dotnet/arcade-services</Uri>
|
||||
|
@ -232,9 +232,9 @@
|
|||
<Sha>e5e8761172f338331f5df83eaea9abdf9a2dc1aa</Sha>
|
||||
<SourceBuild RepoName="source-build-reference-packages" ManagedOnly="true" />
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.SourceLink.GitHub" Version="8.0.0-beta.23309.3" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
|
||||
<Dependency Name="Microsoft.SourceLink.GitHub" Version="8.0.0-beta.23314.2" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
|
||||
<Uri>https://github.com/dotnet/sourcelink</Uri>
|
||||
<Sha>23bda65700e70b6697390dcc4e0f87e2dfbce63a</Sha>
|
||||
<Sha>4d2c8bf58e8cb7900ec2d9077c155572e2d3cd88</Sha>
|
||||
<SourceBuild RepoName="sourcelink" ManagedOnly="true" />
|
||||
</Dependency>
|
||||
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="1.0.0-beta.23312.2" CoherentParentDependency="Microsoft.DotNet.Arcade.Sdk">
|
||||
|
|
|
@ -36,7 +36,7 @@
|
|||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<!-- Dependency from https://github.com/dotnet/arcade -->
|
||||
<MicrosoftDotNetBuildTasksInstallersPackageVersion>8.0.0-beta.23314.1</MicrosoftDotNetBuildTasksInstallersPackageVersion>
|
||||
<MicrosoftDotNetBuildTasksInstallersPackageVersion>8.0.0-beta.23316.6</MicrosoftDotNetBuildTasksInstallersPackageVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<!-- Dependency from https://github.com/dotnet/arcade-services -->
|
||||
|
|
4
eng/common/dotnet-install.sh
vendored
4
eng/common/dotnet-install.sh
vendored
|
@ -54,6 +54,10 @@ cpuname=$(uname -m)
|
|||
case $cpuname in
|
||||
arm64|aarch64)
|
||||
buildarch=arm64
|
||||
if [ "$(getconf LONG_BIT)" -lt 64 ]; then
|
||||
# This is 32-bit OS running on 64-bit CPU (for example Raspberry Pi OS)
|
||||
buildarch=arm
|
||||
fi
|
||||
;;
|
||||
loongarch64)
|
||||
buildarch=loongarch64
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
"cmake": "3.21.0"
|
||||
},
|
||||
"msbuild-sdks": {
|
||||
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23314.1",
|
||||
"Microsoft.DotNet.CMake.Sdk": "8.0.0-beta.23314.1"
|
||||
"Microsoft.DotNet.Arcade.Sdk": "8.0.0-beta.23316.6",
|
||||
"Microsoft.DotNet.CMake.Sdk": "8.0.0-beta.23316.6"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue