Skip to content

Commit 0c377e9

Browse files
[main] Update dependencies from dotnet/arcade, dotnet/source-build-reference-packages (#441)
* Update dependencies from https://github.com/dotnet/arcade build 20250117.3 Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk From Version 10.0.0-beta.25061.1 -> To Version 10.0.0-beta.25067.3 * Update dependencies from https://github.com/dotnet/source-build-reference-packages build 20250115.1 Microsoft.SourceBuild.Intermediate.source-build-reference-packages From Version 10.0.606004 -> To Version 10.0.606501 --------- Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
1 parent c9e4423 commit 0c377e9

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

eng/Version.Details.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@
1111
<Sha>e9b99f554a3c298e1106ea171f5a0462780af2c5</Sha>
1212
<SourceBuild RepoName="msbuild" ManagedOnly="true" />
1313
</Dependency>
14-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.25061.1">
14+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="10.0.0-beta.25067.3">
1515
<Uri>https://github.com/dotnet/arcade</Uri>
16-
<Sha>98b4ae348fa01b99dc6fbfc8f601efd9b90090db</Sha>
16+
<Sha>12fdb9fc3fe43a861f1ae01747bfe6cef878d4cb</Sha>
1717
</Dependency>
1818
<!-- Intermediate is necessary for source build. -->
19-
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="10.0.0-beta.25061.1">
19+
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="10.0.0-beta.25067.3">
2020
<Uri>https://github.com/dotnet/arcade</Uri>
21-
<Sha>98b4ae348fa01b99dc6fbfc8f601efd9b90090db</Sha>
21+
<Sha>12fdb9fc3fe43a861f1ae01747bfe6cef878d4cb</Sha>
2222
<SourceBuild RepoName="arcade" ManagedOnly="true" />
2323
</Dependency>
2424
<!-- Intermediate is necessary for source build. -->
25-
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="10.0.606004">
25+
<Dependency Name="Microsoft.SourceBuild.Intermediate.source-build-reference-packages" Version="10.0.606501">
2626
<Uri>https://github.com/dotnet/source-build-reference-packages</Uri>
27-
<Sha>1d0bf118044fc096231bfba85b0cd68aad0d1507</Sha>
27+
<Sha>be366997dfae0aa6e3c9a78bad10bfb3f79cbde1</Sha>
2828
<SourceBuild RepoName="source-build-reference-packages" ManagedOnly="true" />
2929
</Dependency>
3030
</ToolsetDependencies>

eng/common/tools.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
[bool]$useInstalledDotNetCli = if (Test-Path variable:useInstalledDotNetCli) { $useInstalledDotNetCli } else { $true }
4343

4444
# Enable repos to use a particular version of the on-line dotnet-install scripts.
45-
# default URL: https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.ps1
45+
# default URL: https://builds.dotnet.microsoft.com/dotnet/scripts/v1/dotnet-install.ps1
4646
[string]$dotnetInstallScriptVersion = if (Test-Path variable:dotnetInstallScriptVersion) { $dotnetInstallScriptVersion } else { 'v1' }
4747

4848
# True to use global NuGet cache instead of restoring packages to repository-local directory.
@@ -262,7 +262,7 @@ function GetDotNetInstallScript([string] $dotnetRoot) {
262262
if (!(Test-Path $installScript)) {
263263
Create-Directory $dotnetRoot
264264
$ProgressPreference = 'SilentlyContinue' # Don't display the console progress UI - it's a huge perf hit
265-
$uri = "https://raw.githubusercontent.com/dotnet/install-scripts/4b17227b30fbbad567d4d4fba17c59da51bc817b/src/dotnet-install.ps1"
265+
$uri = "https://builds.dotnet.microsoft.com/dotnet/scripts/v1/dotnet-install.ps1"
266266

267267
Retry({
268268
Write-Host "GET $uri"

eng/common/tools.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ warn_as_error=${warn_as_error:-true}
5454
use_installed_dotnet_cli=${use_installed_dotnet_cli:-true}
5555

5656
# Enable repos to use a particular version of the on-line dotnet-install scripts.
57-
# default URL: https://dotnet.microsoft.com/download/dotnet/scripts/v1/dotnet-install.sh
57+
# default URL: https://builds.dotnet.microsoft.com/dotnet/scripts/v1/dotnet-install.sh
5858
dotnetInstallScriptVersion=${dotnetInstallScriptVersion:-'v1'}
5959

6060
# True to use global NuGet cache instead of restoring packages to repository-local directory.
@@ -295,7 +295,7 @@ function with_retries {
295295
function GetDotNetInstallScript {
296296
local root=$1
297297
local install_script="$root/dotnet-install.sh"
298-
local install_script_url="https://raw.githubusercontent.com/dotnet/install-scripts/4b17227b30fbbad567d4d4fba17c59da51bc817b/src/dotnet-install.sh"
298+
local install_script_url="https://builds.dotnet.microsoft.com/dotnet/scripts/v1/dotnet-install.sh"
299299

300300
if [[ ! -a "$install_script" ]]; then
301301
mkdir -p "$root"

global.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"tools": {
3-
"dotnet": "10.0.100-alpha.1.24573.1"
3+
"dotnet": "10.0.100-alpha.1.25064.3"
44
},
55
"msbuild-sdks": {
6-
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25061.1"
6+
"Microsoft.DotNet.Arcade.Sdk": "10.0.0-beta.25067.3"
77
}
88
}

0 commit comments

Comments
 (0)