Files
runner-images/images/win/scripts/Installers/Install-Nuget.ps1
Aleksandr Chebotov ebadb5cea8 Add NuGet.exe on Windows Server 2016/2019 (#1049)
* Add NuGet.CommandLine

* remove temporary path update
2020-06-15 20:10:54 +03:00

17 lines
403 B
PowerShell

################################################################################
## File: Install-Nuget.ps1
## Desc: Install NuGet.CommandLine
################################################################################
Choco-Install -PackageName NuGet.CommandLine
if (Get-Command -Name 'nuget.exe')
{
Write-Host 'nuget on path'
}
else
{
Write-Host 'nuget is not on path'
exit 1
}