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

This change updates the following dependencies
- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19055.1
This commit is contained in:
dotnet-maestro[bot] 2019-01-06 13:08:39 +00:00
parent b23e8cacdc
commit 2d19465b84
3 changed files with 6 additions and 5 deletions

View file

@ -24,9 +24,9 @@
</Dependency> </Dependency>
</ProductDependencies> </ProductDependencies>
<ToolsetDependencies> <ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19054.13"> <Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19055.1">
<Uri>https://github.com/dotnet/arcade</Uri> <Uri>https://github.com/dotnet/arcade</Uri>
<Sha>c6268efc7cfcb98197eb374bb01e1fadb5a7f6ed</Sha> <Sha>b43f8c50d78c00d33f0b31a666b46ce5e9bcbe3d</Sha>
</Dependency> </Dependency>
</ToolsetDependencies> </ToolsetDependencies>
</Dependencies> </Dependencies>

View file

@ -189,8 +189,9 @@ function InitializeBuildTool {
InitializeDotNetCli $restore InitializeDotNetCli $restore
# return value # return values
_InitializeBuildTool="$_InitializeDotNetCli/dotnet" _InitializeBuildTool="$_InitializeDotNetCli/dotnet"
_InitializeBuildToolCommand="msbuild"
} }
function GetNuGetPackageCachePath { function GetNuGetPackageCachePath {
@ -283,7 +284,7 @@ function MSBuild {
warnaserror_switch="/warnaserror" warnaserror_switch="/warnaserror"
fi fi
"$_InitializeBuildTool" msbuild /m /nologo /clp:Summary /v:$verbosity /nr:$node_reuse $warnaserror_switch /p:TreatWarningsAsErrors=$warn_as_error "$@" "$_InitializeBuildTool" "$_InitializeBuildToolCommand" /m /nologo /clp:Summary /v:$verbosity /nr:$node_reuse $warnaserror_switch /p:TreatWarningsAsErrors=$warn_as_error "$@"
lastexitcode=$? lastexitcode=$?
if [[ $lastexitcode != 0 ]]; then if [[ $lastexitcode != 0 ]]; then

View file

@ -3,6 +3,6 @@
"dotnet": "3.0.100-preview-009812" "dotnet": "3.0.100-preview-009812"
}, },
"msbuild-sdks": { "msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19054.13" "Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19055.1"
} }
} }