SteamStorefrontAPI/Push-nuget.ps1

6 lines
327 B
PowerShell
Raw Normal View History

2018-05-27 12:48:02 -04:00
$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