nuget发布包
步骤:
1.在nuget官网申请api key, https://www.nuget.org/
2.创建一个类库项目,例如名称为: ExcelUtisForJtl, 名称可能无效,需确保可用
打包:
nuget spec
nuget pack ExcelUtisForJtl.csproj
推送到官网:
nuget push ExcelUtisForJtl.1.0.0.nupkg -Source https://www.nuget.org -apikey=[apikey]
删除包:
nuget delete ExcelUtisForJtl 1.0.0 -Source https://www.nuget.org -apikey=[apikey]