Update dependencies from https://github.com/dotnet/arcade build 20190222.3 (#669)
This change updates the following dependencies - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19122.3
This commit is contained in:
parent
4aafb29a27
commit
0d7907a130
6 changed files with 6 additions and 8 deletions
|
@ -36,9 +36,9 @@
|
||||||
</Dependency>
|
</Dependency>
|
||||||
</ProductDependencies>
|
</ProductDependencies>
|
||||||
<ToolsetDependencies>
|
<ToolsetDependencies>
|
||||||
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19121.5">
|
<Dependency Name="Microsoft.DotNet.Arcade.Sdk" Version="1.0.0-beta.19122.3">
|
||||||
<Uri>https://github.com/dotnet/arcade</Uri>
|
<Uri>https://github.com/dotnet/arcade</Uri>
|
||||||
<Sha>660f6cd006b276edb3764f4d7d726cedf6c29d8e</Sha>
|
<Sha>78ccbeb1c8de779a6650257b408f5b3b4de16a0f</Sha>
|
||||||
</Dependency>
|
</Dependency>
|
||||||
</ToolsetDependencies>
|
</ToolsetDependencies>
|
||||||
</Dependencies>
|
</Dependencies>
|
||||||
|
|
|
@ -99,7 +99,6 @@ function Build {
|
||||||
/p:PerformanceTest=$performanceTest `
|
/p:PerformanceTest=$performanceTest `
|
||||||
/p:Sign=$sign `
|
/p:Sign=$sign `
|
||||||
/p:Publish=$publish `
|
/p:Publish=$publish `
|
||||||
/p:ContinuousIntegrationBuild=$ci `
|
|
||||||
@properties
|
@properties
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -10,7 +10,7 @@ set -e
|
||||||
usage()
|
usage()
|
||||||
{
|
{
|
||||||
echo "Common settings:"
|
echo "Common settings:"
|
||||||
echo " --configuration <value> Build configuration: 'Debug' or 'Release' (short: --c)"
|
echo " --configuration <value> Build configuration: 'Debug' or 'Release' (short: -c)"
|
||||||
echo " --verbosity <value> Msbuild verbosity: q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic] (short: -v)"
|
echo " --verbosity <value> Msbuild verbosity: q[uiet], m[inimal], n[ormal], d[etailed], and diag[nostic] (short: -v)"
|
||||||
echo " --binaryLog Create MSBuild binary log (short: -bl)"
|
echo " --binaryLog Create MSBuild binary log (short: -bl)"
|
||||||
echo ""
|
echo ""
|
||||||
|
@ -191,7 +191,6 @@ function Build {
|
||||||
/p:PerformanceTest=$performance_test \
|
/p:PerformanceTest=$performance_test \
|
||||||
/p:Sign=$sign \
|
/p:Sign=$sign \
|
||||||
/p:Publish=$publish \
|
/p:Publish=$publish \
|
||||||
/p:ContinuousIntegrationBuild=$ci \
|
|
||||||
$properties
|
$properties
|
||||||
|
|
||||||
ExitWithExitCode 0
|
ExitWithExitCode 0
|
||||||
|
|
|
@ -461,7 +461,7 @@ function MSBuild() {
|
||||||
|
|
||||||
$buildTool = InitializeBuildTool
|
$buildTool = InitializeBuildTool
|
||||||
|
|
||||||
$cmdArgs = "$($buildTool.Command) /m /nologo /clp:Summary /v:$verbosity /nr:$nodeReuse"
|
$cmdArgs = "$($buildTool.Command) /m /nologo /clp:Summary /v:$verbosity /nr:$nodeReuse /p:ContinuousIntegrationBuild=$ci"
|
||||||
|
|
||||||
if ($warnAsError) {
|
if ($warnAsError) {
|
||||||
$cmdArgs += " /warnaserror /p:TreatWarningsAsErrors=true"
|
$cmdArgs += " /warnaserror /p:TreatWarningsAsErrors=true"
|
||||||
|
|
|
@ -293,7 +293,7 @@ function MSBuild {
|
||||||
warnaserror_switch="/warnaserror"
|
warnaserror_switch="/warnaserror"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
"$_InitializeBuildTool" "$_InitializeBuildToolCommand" /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 /p:ContinuousIntegrationBuild=$ci "$@" || {
|
||||||
local exit_code=$?
|
local exit_code=$?
|
||||||
echo "Build failed (exit code '$exit_code')." >&2
|
echo "Build failed (exit code '$exit_code')." >&2
|
||||||
ExitWithExitCode $exit_code
|
ExitWithExitCode $exit_code
|
||||||
|
|
|
@ -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.19121.5"
|
"Microsoft.DotNet.Arcade.Sdk": "1.0.0-beta.19122.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue