开发常用脚本 -- 自动打包并发布nuget包脚本
首先从NuGet官方网站下载NuGet.exe程序,并添加到环境变量里面(大家应该都会),或下载后保存到当前文件夹下。
创建编写 nugetCreatPack.sh 脚本文件,内容如下:
if not exist ".\nuget.exe" powershell -Command "(new-object System.Net.WebClient).DownloadFile('https://dist.nuget.org/win-x86-commandline/latest/nuget.exe', '.\nuget.exe')" nuget spec AppLogger.csproj -Force nuget pack pause
创建编写 nugetPush.sh 脚本文件,内容如下:
@echo off ::nuget push xxx.nupkg nuget_apikey -Source https://api.nuget.org/v3/index.json if not "%1"=="" ( nuget push %1 oy2o4uu2ztnyagk4bkgqknuhd***************y672pm -Source https://api.nuget.org/v3/index.json ) else ( echo. echo 错误:参数为空 echo 用法:%0 待发布的nuget包名 echo 例如:%0 test.AppLogger.1.0.7.nupkg ) pause
关注我】。(●'◡'●)
如果,您希望更容易地发现我的新博客,不妨点击一下绿色通道的【因为,我的写作热情也离不开您的肯定与支持,感谢您的阅读,我是【Jack_孟】!
本文来自博客园,作者:jack_Meng,转载请注明原文链接:https://www.cnblogs.com/mq0036/p/14918339.html
【免责声明】本文来自源于网络,如涉及版权或侵权问题,请及时联系我们,我们将第一时间删除或更改!