Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 

13 рядки
406 B

  1. param([string]$apiKey)
  2. Invoke-WebRequest -Uri "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" -OutFile "nuget.exe"
  3. $files = Get-ChildItem -Path ".\NuGet" -Filter "*.nupkg"
  4. foreach ($file in $files)
  5. {
  6. Write-Host "Uploading: " $file
  7. .\nuget.exe push $file.Fullname $apiKey -Source https://api.nuget.org/v3/index.json
  8. }
  9. Remove-Item "nuget.exe" -Force -Recurse -ErrorAction SilentlyContinue