restore nuget build script after fix (#415)

This commit is contained in:
Pantazis Deligiannis 2022-10-31 13:08:00 -07:00 коммит произвёл GitHub
Родитель f83b21afcd
Коммит 879131ab17
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 4 удалений

8
Scripts/build.ps1 поставляемый
Просмотреть файл

@ -92,10 +92,10 @@ if ($nuget.IsPresent -and $ci.IsPresent) {
$error_msg = "Failed to build the 'Microsoft.Coyote.CLI' package"
Invoke-ToolCommand -tool $dotnet -cmd $command -error_msg $error_msg
# Write-Comment -text "Building the 'Microsoft.Coyote' meta-package." -color "magenta"
# $command = "$cmd $PSScriptRoot/NuGet/Coyote.Meta.csproj"
# $error_msg = "Failed to build the 'Microsoft.Coyote' meta-package"
# Invoke-ToolCommand -tool $dotnet -cmd $command -error_msg $error_msg
Write-Comment -text "Building the 'Microsoft.Coyote' meta-package." -color "magenta"
$command = "$cmd $PSScriptRoot/NuGet/Coyote.Meta.csproj"
$error_msg = "Failed to build the 'Microsoft.Coyote' meta-package"
Invoke-ToolCommand -tool $dotnet -cmd $command -error_msg $error_msg
} else {
Write-Comment -text "Building the Coyote NuGet packages supports only Windows." -color "yellow"
}