dotnet命令安装nuget包原
Posted 屌丝大叔的笔记
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dotnet命令安装nuget包原相关的知识,希望对你有一定的参考价值。
dotnet nuget add source http://192.168.3.222:8081/repository/nuget-hosted/ -n 192.168.3.222
因为是在用jenkins打包,且jenkins是单独的服务器,默认是没有安装自己搭建的nuget仓库地址的。所以需要在jenkins上手动配置自己的nuget仓库地址,才能restore自己的nuget包。执行以上命令即可。
dotnet nuget add source [仓库地址] -n [仓库名称]
具体参考官方文档:https://docs.microsoft.com/zh-cn/dotnet/core/tools/dotnet-nuget-add-source
以上是关于dotnet命令安装nuget包原的主要内容,如果未能解决你的问题,请参考以下文章
使用 dotnet-outdated 维护项目 nuget 包版本
如何使用本地 nuget 包源进行 Dockerfile dotnet restore [重复]
如何使用 dotnet(nuget 包)httpclient 配置 TCP 连接数?