Skip to content

Commit f91d4ca

Browse files
authored
[main] Update dependencies from dotnet/arcade (#18301)
2 parents cac6c93 + dc1177f commit f91d4ca

File tree

4 files changed

+19
-19
lines changed

4 files changed

+19
-19
lines changed

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -206,18 +206,18 @@
206206
</Dependency>
207207
</ProductDependencies>
208208
<ToolsetDependencies>
209-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24068.1">
209+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.24069.2">
210210
<Uri>https://github.com/dotnet/arcade</Uri>
211-
<Sha>c246c9d7bfb98646ec52a18471d075219b26dccc</Sha>
211+
<Sha>abddd0bd5145578246dcadda264c7557f2a935a9</Sha>
212212
<SourceBuild RepoName="arcade" ManagedOnly="true" />
213213
</Dependency>
214-
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="9.0.0-beta.24068.1">
214+
<Dependency Name="Microsoft.DotNet.CMake.Sdk" Version="9.0.0-beta.24069.2">
215215
<Uri>https://github.com/dotnet/arcade</Uri>
216-
<Sha>c246c9d7bfb98646ec52a18471d075219b26dccc</Sha>
216+
<Sha>abddd0bd5145578246dcadda264c7557f2a935a9</Sha>
217217
</Dependency>
218-
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="9.0.0-beta.24068.1">
218+
<Dependency Name="Microsoft.DotNet.Build.Tasks.Installers" Version="9.0.0-beta.24069.2">
219219
<Uri>https://github.com/dotnet/arcade</Uri>
220-
<Sha>c246c9d7bfb98646ec52a18471d075219b26dccc</Sha>
220+
<Sha>abddd0bd5145578246dcadda264c7557f2a935a9</Sha>
221221
</Dependency>
222222
<Dependency Name="Microsoft.DotNet.Darc" Version="1.1.0-beta.23621.3">
223223
<Uri>https://github.com/dotnet/arcade-services</Uri>
@@ -227,9 +227,9 @@
227227
<Uri>https://github.com/dotnet/arcade-services</Uri>
228228
<Sha>702f946f89ace6197fdca2ac309d32187c4bc1bd</Sha>
229229
</Dependency>
230-
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.24068.1">
230+
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.24069.2">
231231
<Uri>https://github.com/dotnet/arcade</Uri>
232-
<Sha>c246c9d7bfb98646ec52a18471d075219b26dccc</Sha>
232+
<Sha>abddd0bd5145578246dcadda264c7557f2a935a9</Sha>
233233
</Dependency>
234234
<Dependency Name="Microsoft.Extensions.Logging.Console" Version="9.0.0-alpha.1.23612.13">
235235
<Uri>https://github.com/dotnet/runtime</Uri>

eng/Versions.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
</PropertyGroup>
4141
<PropertyGroup>
4242
<!-- Dependency from https://github.com/dotnet/arcade -->
43-
<MicrosoftDotNetBuildTasksInstallersPackageVersion>9.0.0-beta.24068.1</MicrosoftDotNetBuildTasksInstallersPackageVersion>
43+
<MicrosoftDotNetBuildTasksInstallersPackageVersion>9.0.0-beta.24069.2</MicrosoftDotNetBuildTasksInstallersPackageVersion>
4444
</PropertyGroup>
4545
<PropertyGroup>
4646
<!-- Dependency from https://github.com/dotnet/arcade-services -->

eng/common/cross/build-rootfs.sh

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ usage()
88
echo "BuildArch can be: arm(default), arm64, armel, armv6, ppc64le, riscv64, s390x, x64, x86"
99
echo "CodeName - optional, Code name for Linux, can be: xenial(default), zesty, bionic, alpine"
1010
echo " for alpine can be specified with version: alpineX.YY or alpineedge"
11-
echo " for FreeBSD can be: freebsd12, freebsd13"
11+
echo " for FreeBSD can be: freebsd13, freebsd14"
1212
echo " for illumos can be: illumos"
1313
echo " for Haiku can be: haiku."
1414
echo "lldbx.y - optional, LLDB version, can be: lldb3.9(default), lldb4.0, lldb5.0, lldb6.0 no-lldb. Ignored for alpine and FreeBSD"
@@ -71,9 +71,9 @@ __AlpinePackages+=" krb5-dev"
7171
__AlpinePackages+=" openssl-dev"
7272
__AlpinePackages+=" zlib-dev"
7373

74-
__FreeBSDBase="12.4-RELEASE"
75-
__FreeBSDPkg="1.17.0"
76-
__FreeBSDABI="12"
74+
__FreeBSDBase="13.2-RELEASE"
75+
__FreeBSDPkg="1.20.0"
76+
__FreeBSDABI="13"
7777
__FreeBSDPackages="libunwind"
7878
__FreeBSDPackages+=" icu"
7979
__FreeBSDPackages+=" libinotify"
@@ -334,14 +334,14 @@ while :; do
334334
__AlpineVersion="$__AlpineMajorVersion.$__AlpineMinoVersion"
335335
fi
336336
;;
337-
freebsd12)
337+
freebsd13)
338338
__CodeName=freebsd
339339
__SkipUnmount=1
340340
;;
341-
freebsd13)
341+
freebsd14)
342342
__CodeName=freebsd
343-
__FreeBSDBase="13.2-RELEASE"
344-
__FreeBSDABI="13"
343+
__FreeBSDBase="14.0-RELEASE"
344+
__FreeBSDABI="14"
345345
__SkipUnmount=1
346346
;;
347347
illumos)

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"cmake": "3.21.0"
1212
},
1313
"msbuild-sdks": {
14-
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24068.1",
15-
"Microsoft.DotNet.CMake.Sdk": "9.0.0-beta.24068.1"
14+
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.24069.2",
15+
"Microsoft.DotNet.CMake.Sdk": "9.0.0-beta.24069.2"
1616
}
1717
}

0 commit comments

Comments
 (0)