How should I use Nuget for internal enterprise development?

前端 未结 4 1721
囚心锁ツ
囚心锁ツ 2020-12-07 09:21

We use Nuget for our internal development to allow us to share code across teams. We run into issues however when one person is working on code that will be deployed across

4条回答
  •  南方客
    南方客 (楼主)
    2020-12-07 09:41

    Nuget was designed for sharing third party libaries. We plan to use Nuget internally for all common code that can be shared between projects. Things like a common data layer, string and other regular expression functions, email components and other artifacts like that.

    The only way I see Nuget being of any help is when the components, code or artifacts you are sharing across teams/projects are stable and have their own release cycle that is different from your project's release cycle. For your needs Nuget is an overkill. You might have better productivity linking all such projects within the same solution. Your solution structure should include the three projects A,B and C as dependent projects referenced internally wherever required.

提交回复
热议问题