Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

upload.ps1 406 B

12345678910111213
  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