Преглед изворни кода

Adding nuget deployment script

Sebastien Ros пре 9 година
родитељ
комит
2f9985db02
2 измењених фајлова са 3 додато и 1 уклоњено
  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