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

- Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19273.11
This commit is contained in:
dotnet-maestro 2019-05-24 12:12:50 +00:00
parent 39bd247a9d
commit 7f101dbf65
3 changed files with 8 additions and 7 deletions

View file

@ -72,9 +72,9 @@
</Dependency>
</ProductDependencies>
<ToolsetDependencies>
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19272.13">
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19273.11">
<Uri>https://github.com/dotnet/arcade</Uri>
<Sha>86e674361bdcefecbd8199ab62d0b1a6cb25703d</Sha>
<Sha>02a90cc69d2d32bbde9e6e0e41186711c591de27</Sha>
</Dependency>
</ToolsetDependencies>
</Dependencies>

View file

@ -389,14 +389,15 @@ function StopProcesses {
}
function MSBuild {
args=$@
local args=$@
if [[ "$pipelines_log" == true ]]; then
InitializeBuildTool
InitializeToolset
_toolset_dir="${_InitializeToolset%/*}"
_loggerPath="$_toolset_dir/$_InitializeBuildToolFramework/Microsoft.DotNet.Arcade.Sdk.dll"
args=( "${args[@]}" "-logger:$_loggerPath" )
local toolset_dir="${_InitializeToolset%/*}"
local logger_path="$toolset_dir/$_InitializeBuildToolFramework/Microsoft.DotNet.Arcade.Sdk.dll"
args=( "${args[@]}" "-logger:$logger_path" )
fi
MSBuild-Core ${args[@]}
}

View file

@ -3,6 +3,6 @@
"dotnet": "3.0.100-preview5-011568"
},
"msbuild-sdks": {
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19272.13"
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19273.11"
}
}