[master] Update dependencies from dotnet/arcade (#6635)

* Update dependencies from https://github.com/dotnet/arcade build 20200301.1

- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20151.1

* Update dependencies from https://github.com/dotnet/arcade build 20200302.4

- Microsoft.DotNet.Arcade.Sdk - 5.0.0-beta.20152.4
This commit is contained in:
dotnet-maestro[bot] 2020-03-03 13:38:48 +00:00 committed by GitHub
parent b6c1693228
commit b777b15033
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 3 deletions

View file

@ -100,9 +100,9 @@
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20129.1">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="5.0.0-beta.20152.4">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>86e54fb5076d46a6f959f0329d53c1c72e2280df</Sha>
<Sha>d8c2d041341ea7974fd3f2057e9d6afdd4f37598</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies>

View file

@ -26,6 +26,11 @@ Param(
[Parameter(ValueFromRemainingArguments=$true)][String[]]$properties
)
# Unset 'Platform' environment variable to avoid unwanted collision in InstallDotNetCore.targets file
# some computer has this env var defined (e.g. Some HP)
if($env:Platform) {
$env:Platform=""
}
function Print-Usage() {
Write-Host "Common settings:"
Write-Host " -configuration <value> Build configuration: 'Debug' or 'Release' (short: -c)"

View file

@ -8,6 +8,6 @@
}
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20129.1"
"Microsoft.DotNet.Arcade.Sdk": "5.0.0-beta.20152.4"
}
}