Update dependencies from https://github.com/dotnet/arcade build 20190503.8 (#1845)

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19253.8
This commit is contained in:
dotnet-maestro[bot] 2019-05-04 12:26:55 +00:00 committed by GitHub
parent f39c1823ca
commit f22dc57f4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 5 deletions

View file

@ -72,9 +72,9 @@
</Dependency> </Dependency>
</ProductDependencies> </ProductDependencies>
<ToolsetDependencies> <ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19252.2"> <Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19253.8">
<Uri>https://github.com/dotnet/arcade</Uri> <Uri>https://github.com/dotnet/arcade</Uri>
<Sha>ed63a7faf2d119829dd971be91bb46b6ebaa1dd2</Sha> <Sha>4cacf7aa7b2cd8bdd042e721e6ad73d809dd5678</Sha>
</Dependency> </Dependency>
</ToolsetDependencies> </ToolsetDependencies>
</Dependencies> </Dependencies>

View file

@ -122,7 +122,7 @@ try {
. $configureToolsetScript . $configureToolsetScript
} }
if ($restore) { if (($restore) -and ($null -eq $env:DisableNativeToolsetInstalls)) {
InitializeNativeTools InitializeNativeTools
} }

View file

@ -218,7 +218,7 @@ if [[ -n "${useInstalledDotNetCli:-}" ]]; then
use_installed_dotnet_cli="$useInstalledDotNetCli" use_installed_dotnet_cli="$useInstalledDotNetCli"
fi fi
if [[ "$restore" == true ]]; then if [[ "$restore" == true && -z ${DisableNativeToolsetInstalls:-} ]]; then
InitializeNativeTools InitializeNativeTools
fi fi

View file

@ -3,6 +3,6 @@
"dotnet": "3.0.100-preview4-011223" "dotnet": "3.0.100-preview4-011223"
}, },
"msbuild-sdks": { "msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19252.2" "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19253.8"
} }
} }