mirror of
https://github.com/actions/runner-images.git
synced 2025-12-20 06:35:47 +00:00
17 lines
403 B
PowerShell
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
|
|
}
|