Using Nuget in development environment - best practices / how to

前端 未结 2 1356
夕颜
夕颜 2021-02-05 09:08

Trying to figure out the best way to use Nuget in a development environment to manage our own libraries.

We want to standardize on Nuget way of doing things for our 3rd

2条回答
  •  遇见更好的自我
    2021-02-05 09:31

    If you're working on the source code for the lib and the main app at the same time, I'd say NuGet is probably not a good solution. I think it'll only work in situations where you work with a "stable" version of the library that don't need to change frequently during the development of your main app.

    That said - is it possible the development on your library could be done in isolation? You already mention you're doing TDD on the lib, so why can't that work be done, then built, deployed, then the main app work done?

提交回复
热议问题