I have an inherited project in Visual Studio 2008 for which I need to create an assembly plan. Since the developer did not leave any unit tests, I really really do not want to update the project to VS 2010.
However, my solution for NOT storing binary files in our original control mechanism (SVN) is to use the Nuget repository that I host. Ideally, I would do the following:
- WITHOUT updating the VS 2008 project, remove the links and instead insert the * .pkg link
- DLL node in a NuGet package on a local NuGet server
- Let my assembly break like that.
Please note that I have Visual Studio 2010 and NuGet installed - I just don't want to run the update wizard. How can i do this?
source share