Can I use NuGet with a project created in an earlier version of Visual Studio WITHOUT updating the solution?

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?

0
source share
1 answer

You can use Sharp Develop 4.1 to install packages in older solutions (2005/2008) Sharp Develop does not change the version of Visual Studio.

Web site

I think Visual Studio 2010 should be installed with the plugin, but you have already done this :-)

+1
source

Source: https://habr.com/ru/post/912366/


All Articles