Can I publish a private NuGet package?

前端 未结 4 1976
误落风尘
误落风尘 2020-12-12 13:04

I have an assembly that I have made which is very specific to my team at my company. I want to be able to use NuGet to make this assembly avaiable to other projects that my

4条回答
  •  执笔经年
    2020-12-12 13:16

    Another option for hosting your own NuGet server is to use JetBrains TeamCity as a build server. The setup is described here.

    The Team City server acts as a NuGet repository that would/could/should only be accessible within your company.

    Based on your usage, there are free versions of the software.

    It has some nice options such as the ability to publish a new NuGet version on demand, with each new continuous integration build, etc. One of the most useful bits (as with all NuGet server implementations) is that it will keep dozens of older versions of your assemblies so if you have one project that needs to reference the newest version, and another project that needs to reference an older version, everything will work out.

提交回复
热议问题