There's a similar post on stack but it doesn't help with my issue possibly because I am using Visual Studio 2015.
How do I get the "Enable NuGet Package Restore" option to appear in VS2015?
I chose File > New Project and created an empty ASP.NET Web Application. I'm looking for this menu option.
I should mention that I have looked for any pre-existing nuGet files in my project folder and there are none.
Best Solution
It took far too long but I finally found this document on Migrating MSBuild-Integrated solutions to Automatic Package Restore and I was able to resolve the issue using the methods described here.
'.nuget'
solution directory along from the solutionnuget.targets
from your.csproj
or.vbproj
files. Though not officially supported, the document links to a PowerShell script if you have a lot of projects which need to be cleaned up. I manually edited mine by hand so I can't give any feedback regarding my experience with it.When editing your files by hand, here's what you'll be looking for:
Solution File (.sln)
Project File (.csproj / .vbproj)