소스 검색

Adding nuget deployment script

Sebastien Ros 8 년 전
부모
커밋
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