1.管理后台获取apikeys:
https://www.nuget.org/users/account/LogOn
2.查询版本号
包版本号查询地址:
http://package-version.xxxx.com/,发布已有存在的nubkg文件,需查询之前的版本号,避免重复。
3.在要上传dll的项目中生成nuget包文件
3.1配置生成nuget信息
在需要生成包文件的类库项目上右键-->属性 配置应用程序,包,资源等信息,如图
3.2生成Nuget包文件:release,编译 生成nubkg文件
4.修改bat文件路径,执行bat上传nuget包文件到nuget服务器
PushNuGet.bat :
@echo off
set filepath=%cd%
set apikey=xxxx
set nupkgpath6=%filepath%/HuaweiLog.Sdk.Core/bin/Release/xxx.HuaweiLog.Sdk.Core.1.0.0.nupkg
dotnet nuget push %nupkgpath6% -k %apikey% -s http://erp-nuget.xxx.com/nuget/
Pause
Nuget apikey: xxxx
Nuget url: http://erp-nuget.xxx.com/nuget/