فهرست منبع

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