소스 검색

Merge branch 'master' into develop

release/3.x.x
Christian Kratky 5 년 전
부모
커밋
d5b0893e90
1개의 변경된 파일5개의 추가작업 그리고 1개의 파일을 삭제
  1. +5
    -1
      Build/upload.ps1

+ 5
- 1
Build/upload.ps1 파일 보기

@@ -1,9 +1,13 @@
param([string]$apiKey)

Invoke-WebRequest -Uri "https://dist.nuget.org/win-x86-commandline/latest/nuget.exe" -OutFile "nuget.exe"

$files = Get-ChildItem -Path ".\NuGet" -Filter "*.nupkg"
foreach ($file in $files)
{
Write-Host "Uploading: " $file

.\nuget.exe push $file.Fullname $apiKey -NoSymbols -Source https://api.nuget.org/v3/index.json
}
}

Remove-Item "nuget.exe" -Force -Recurse -ErrorAction SilentlyContinue

불러오는 중...
취소
저장