Update dependencies from https://github.com/dotnet/arcade build 20190204.18 (#387)
This change updates the following dependencies - Microsoft.DotNet.Arcade.Sdk - 1.0.0-beta.19104.18
This commit is contained in:
parent
3014966c47
commit
24d26056ab
10 changed files with 85 additions and 46 deletions
|
@ -376,6 +376,11 @@ function GetNuGetPackageCachePath() {
|
|||
return $env:NUGET_PACKAGES
|
||||
}
|
||||
|
||||
# Returns a full path to an Arcade SDK task project file.
|
||||
function GetSdkTaskProject([string]$taskName) {
|
||||
return Join-Path (Split-Path (InitializeToolset) -Parent) "SdkTasks\$taskName.proj"
|
||||
}
|
||||
|
||||
function InitializeToolset() {
|
||||
if (Test-Path variable:global:_ToolsetBuildProj) {
|
||||
return $global:_ToolsetBuildProj
|
||||
|
@ -394,7 +399,7 @@ function InitializeToolset() {
|
|||
}
|
||||
|
||||
if (-not $restore) {
|
||||
Write-Host "Toolset version $toolsetVersion has not been restored."
|
||||
Write-Host "Toolset version $toolsetVersion has not been restored." -ForegroundColor Red
|
||||
ExitWithExitCode 1
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue