Skip to content

Commit 878db64

Browse files
Update dependencies from https://github.com/dotnet/arcade build 20250314.2 (#77624)
Microsoft.SourceBuild.Intermediate.arcade , Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Helix.Sdk , Microsoft.DotNet.XliffTasks From Version 9.0.0-beta.25161.4 -> To Version 9.0.0-beta.25164.2 Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
1 parent 2e44cf2 commit 878db64

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

eng/Version.Details.xml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -122,19 +122,19 @@
122122
</Dependency>
123123
</ProductDependencies>
124124
<ToolsetDependencies>
125-
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.25161.4">
125+
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="9.0.0-beta.25164.2">
126126
<Uri>https://github.com/dotnet/arcade</Uri>
127-
<Sha>f33d9e642f0e68a61312164cd9e0baf4e142a999</Sha>
127+
<Sha>5ba9ca776c1d0bb72b2791591e54cf51fc52dfee</Sha>
128128
</Dependency>
129129
<!-- Intermediate is necessary for source build. -->
130-
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="9.0.0-beta.25161.4">
130+
<Dependency Name="Microsoft.SourceBuild.Intermediate.arcade" Version="9.0.0-beta.25164.2">
131131
<Uri>https://github.com/dotnet/arcade</Uri>
132-
<Sha>f33d9e642f0e68a61312164cd9e0baf4e142a999</Sha>
132+
<Sha>5ba9ca776c1d0bb72b2791591e54cf51fc52dfee</Sha>
133133
<SourceBuild RepoName="arcade" ManagedOnly="true" />
134134
</Dependency>
135-
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.25161.4">
135+
<Dependency Name="Microsoft.DotNet.XliffTasks" Version="9.0.0-beta.25164.2">
136136
<Uri>https://github.com/dotnet/arcade</Uri>
137-
<Sha>f33d9e642f0e68a61312164cd9e0baf4e142a999</Sha>
137+
<Sha>5ba9ca776c1d0bb72b2791591e54cf51fc52dfee</Sha>
138138
</Dependency>
139139
<Dependency Name="Microsoft.DiaSymReader" Version="2.0.0">
140140
<Uri>https://github.com/dotnet/symreader</Uri>
@@ -150,9 +150,9 @@
150150
<Uri>https://github.com/dotnet/roslyn</Uri>
151151
<Sha>5d10d428050c0d6afef30a072c4ae68776621877</Sha>
152152
</Dependency>
153-
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.25161.4">
153+
<Dependency Name="Microsoft.DotNet.Helix.Sdk" Version="9.0.0-beta.25164.2">
154154
<Uri>https://github.com/dotnet/arcade</Uri>
155-
<Sha>f33d9e642f0e68a61312164cd9e0baf4e142a999</Sha>
155+
<Sha>5ba9ca776c1d0bb72b2791591e54cf51fc52dfee</Sha>
156156
</Dependency>
157157
<Dependency Name="Microsoft.CodeAnalysis.NetAnalyzers" Version="8.0.0-preview.23468.1">
158158
<Uri>https://github.com/dotnet/roslyn-analyzers</Uri>

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://dotnet.microsoft.com/download/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.ps1"
265+
$uri = "https://builds.dotnet.microsoft.com/dotnet/scripts/$dotnetInstallScriptVersion/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://dotnet.microsoft.com/download/dotnet/scripts/$dotnetInstallScriptVersion/dotnet-install.sh"
298+
local install_script_url="https://builds.dotnet.microsoft.com/dotnet/scripts/$dotnetInstallScriptVersion/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
@@ -11,8 +11,8 @@
1111
}
1212
},
1313
"msbuild-sdks": {
14-
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.25161.4",
15-
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.25161.4",
14+
"Microsoft.DotNet.Arcade.Sdk": "9.0.0-beta.25164.2",
15+
"Microsoft.DotNet.Helix.Sdk": "9.0.0-beta.25164.2",
1616
"Microsoft.Build.Traversal": "3.4.0"
1717
}
1818
}

0 commit comments

Comments
 (0)