微服务中,公用代码dll,私有化nuget
mkdir /data/nuget
cd /data/nuget 创建baget.env文件
# The following config is the API Key used to publish packages.
# You should change this to a secret value to secure your server.
ApiKey=youabc123key
Storage__Type=FileSystem
Storage__Path=/var/baget/packages
Database__Type=Sqlite
Database__ConnectionString=Data Source=/var/baget/baget.db
Search__Type=Database
AllowPackageOverwrites=True
docker run -d --name BaGet-nuget -p 90:80 --env-file baget.env -v “$(pwd)/baget-data:/var/baget” loicsharma/baget:latest
在解决方案资源管理器-选择项目–右键属性–打包–勾选(在构建时生成NUGET包)根据需要填写其他信息–生成
cd 到该bin目录下面
dotnet nuget push -s http://xx.xx.xx.xx:90/v3/index.json -k youabc123key youcoreproject.1.0.0.nupkg
工具–Nuget包管理器–程序包源–添加源http://xx.xx.xx.xx:90/v3/index.json
参考文档