搭建 nuget 私服

创建 nuget 服务器

建立模板

创建一个空的 .net web 空项目,注意要使用 .net,目前 nuget.server 包暂时不支持 net core。我们使用空项目,不要选择webapi等其他选项

搭建 nuget 私服

框架最好选择.net4.6,其他的兼容性不太好。

搭建 nuget 私服

引入 nugetseverver 包

搭建 nuget 私服

而后运行程序即可

搭建 nuget 私服

如果运行后看到下面的界面,说明程序运行成功

搭建 nuget 私服

创建一个 nuge 包

创建类库

搭建 nuget 私服

选择目标框架

目标框架建议选择 .net standard2.0 或者 .net standard2.1。此处我选择的是.net standard2.1
搭建 nuget 私服

写个简单的测试函数,如下

搭建 nuget 私服

写注解

在项目名称上,右键,选择属性,单击打开
搭建 nuget 私服

在打开的界面,填写用户名等相关信息。这些信息可以在私服上引用nuge包的时候看到

搭建 nuget 私服

生成 nuget 包

在项目名称上,右键,选择生成,将nuget 包生成到文件夹中,

搭建 nuget 私服

搭建 nuget 私服

生成nuget包的功能至此完成。

将nuget包加入到私服中

找到上一步。我们生成的 .nupkg 结尾的文件,复制粘贴到nuget私服的 packages文件夹中。
搭建 nuget 私服

上一篇:Nuget(BagGet)使用教程


下一篇:小白2分钟学会Visual Studio将引用包打包到NuGet上