Files
runner-images-PK/images/win/scripts/Installers/Install-Nuget.ps1
T

17 lines
403 B
PowerShell
Raw Normal View History

################################################################################
## 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
}