Update dependencies from https://github.com/dotnet/arcade build 20200122.3 (#6234)

- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20072.3
This commit is contained in:
dotnet-maestro[bot] 2020-01-23 13:30:41 +00:00 committed by GitHub
parent b4519e65a4
commit 07f26ac531
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 5 deletions

View file

@ -104,9 +104,9 @@
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20071.3">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20072.3">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>e06e2807048b6bc7b3549b401a1833bed3bcd8c3</Sha>
<Sha>0fb5c992a80a6fb52bfb1d2b726f75157c1ce210</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies>

View file

@ -2,7 +2,12 @@ param(
[string] $token
)
. $PSScriptRoot\pipeline-logging-functions.ps1
Write-PipelineSetVariable -Name 'VSS_NUGET_ACCESSTOKEN' -Value $token
Write-PipelineSetVariable -Name 'VSS_NUGET_URI_PREFIXES' -Value 'https://dnceng.pkgs.visualstudio.com/;https://pkgs.dev.azure.com/dnceng/;https://devdiv.pkgs.visualstudio.com/;https://pkgs.dev.azure.com/devdiv/'
# Write-PipelineSetVariable will no-op if a variable named $ci is not defined
# Since this script is only ever called in AzDO builds, just universally set it
$ci = $true
Write-PipelineSetVariable -Name 'VSS_NUGET_ACCESSTOKEN' -Value $token -IsMultiJobVariable $false
Write-PipelineSetVariable -Name 'VSS_NUGET_URI_PREFIXES' -Value 'https://dnceng.pkgs.visualstudio.com/;https://pkgs.dev.azure.com/dnceng/;https://devdiv.pkgs.visualstudio.com/;https://pkgs.dev.azure.com/devdiv/' -IsMultiJobVariable $false

View file

@ -3,6 +3,6 @@
"dotnet": "5.0.100-alpha1-015949"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20071.3"
"Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20072.3"
}
}