Ver código fonte

Adding nuget deployment script

Sebastien Ros 8 anos atrás
pai
commit
2f9985db02
2 arquivos alterados com 3 adições e 1 exclusões
  1. 0 1
      buildnuget.cmd
  2. 3 0
      deploynuget.ps1

+ 0 - 1
buildnuget.cmd

@@ -1 +0,0 @@
-dotnet pack jint\project.json -c Release -o artifacts

+ 3 - 0
deploynuget.ps1

@@ -0,0 +1,3 @@
+Remove-Item .\artifacts -Force -Recurse
+dotnet pack .\jint\project.json -c Release -o .\artifacts
+.\.nuget\nuget.exe push .\artifacts\*.nupkg -Source nuget.org -ApiKey $nugetApiKey