You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 23, 2023. It is now read-only.
[release/3.1] Update dependencies from dotnet/arcade (#28147)
* Update dependencies from https://github.com/dotnet/arcade build 20210210.10
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Helix.Sdk
From Version 1.0.0-beta.21072.7 -> To Version 1.0.0-beta.21110.10
* Update dependencies from https://github.com/dotnet/arcade build 20210308.9
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Helix.Sdk
From Version 1.0.0-beta.21072.7 -> To Version 1.0.0-beta.21158.9
* Update dependencies from https://github.com/dotnet/arcade build 20210311.1
Microsoft.DotNet.Arcade.Sdk , Microsoft.DotNet.Build.Tasks.Feed , Microsoft.DotNet.Build.Tasks.Packaging , Microsoft.DotNet.Helix.Sdk
From Version 1.0.0-beta.21072.7 -> To Version 1.0.0-beta.21161.1
Co-authored-by: dotnet-maestro[bot] <dotnet-maestro[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: eng/common/internal-feed-operations.ps1
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,6 @@ function SetupCredProvider {
64
64
}
65
65
66
66
if (($endpoints|Measure-Object).Count -gt0) {
67
-
# Create the JSON object. It should look like '{"endpointCredentials": [{"endpoint":"http://example.index.json", "username":"optional", "password":"accesstoken"}]}'
Copy file name to clipboardExpand all lines: eng/common/internal-feed-operations.sh
-1Lines changed: 0 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -62,7 +62,6 @@ function SetupCredProvider {
62
62
endpoints+=']'
63
63
64
64
if [ ${#endpoints}-gt 2 ];then
65
-
# Create the JSON object. It should look like '{"endpointCredentials": [{"endpoint":"http://example.index.json", "username":"optional", "password":"accesstoken"}]}'
66
65
local endpointCredentials="{\"endpointCredentials\": "$endpoints"}"
@@ -233,10 +233,9 @@ function InstallDotNet([string] $dotnetRoot,
233
233
&$installScript@installParameters
234
234
}
235
235
catch {
236
-
Write-PipelineTelemetryError-Category "InitializeToolset"-Message "Failed to install dotnet runtime '$runtime' from public location."
237
-
238
-
# Only the runtime can be installed from a custom [private] location.
239
-
if ($runtime-and ($runtimeSourceFeed-or$runtimeSourceFeedKey)) {
236
+
# If we fail, retry from a custom (possibly private) location.
237
+
if ($runtimeSourceFeed-or$runtimeSourceFeedKey) {
238
+
Write-Host"Failed to install dotnet runtime '$runtime' version '$version' from public location; trying specified alternate feed credentials"
240
239
if ($runtimeSourceFeed) { $installParameters.AzureFeed=$runtimeSourceFeed }
241
240
242
241
if ($runtimeSourceFeedKey) {
@@ -253,6 +252,7 @@ function InstallDotNet([string] $dotnetRoot,
253
252
ExitWithExitCode 1
254
253
}
255
254
} else {
255
+
Write-PipelineTelemetryError-Category "InitializeToolset"-Message "Failed to install dotnet runtime '$runtime' version '$version' from public location."
256
256
ExitWithExitCode 1
257
257
}
258
258
}
@@ -439,7 +439,7 @@ function LocateVisualStudio([object]$vsRequirements = $null){
0 commit comments