SteamStorefrontAPI/Push-nuget.ps1
2018-05-27 18:48:02 +02:00

6 lines
327 B
PowerShell

$apiKey = Read-Host "Please enter your nuget api key"
nuget pack .\SteamStorefrontAPI\SteamStorefrontAPI.csproj -Symbols -Prop Configuration=Release
nuget push SteamStorefrontAPI.*.nupkg -ApiKey $apiKey -source nuget.org
nuget push SteamStorefrontAPI.*.symbols.nupkg -ApiKey $apiKey -source https://nuget.smbsrc.net/
Read-Host