We have several projects in our product. almost every one of them depends on one called the "core". We distribute each project as a separate nuget package. And for deployment, our work for other teams / products nuget works fine, it is a very big pain during our local work.
Every time the "core" project changes, we need to rebuild it, build nuget, publish it in some repository, and then do restoration in other projects. It takes time. And sometimes we need to make changes to the kernel in a few iterations. Before we create build-publish nuget-update nuget circle again and again
The best solutions that we have found so far are to switch links to links to links to projects during our local work and switch them back to nuget when we want to publish it.
But we are not sure if this is the best way.
So, what is the best way to handle nugget references in two local projects without making work harder?
thank
source
share