How to stop browser closing automatically when you stop debugging on VS 2017

I’m trying out the new VS 2017 RC and wondering if anyone knows how to get the previous debugging behavior back In VS 2015 it went like this: Press start debugging Website opens in new Chrome tab Press stop debugging Website is still open and the site is still running/active Now in 2017: Press start … Read more

Predefined type ‘System.ValueTuple´2´ is not defined or imported

I’ve installed Visual Studio 15 Preview 3 and tried to use the new tuple feature static void Main(string[] args) { var x = DoSomething(); Console.WriteLine(x.x); } static (int x, int y) DoSomething() { return (1, 2); } When I compile I get the error: Predefined type ‘System.ValueTuple´2´ is not defined or imported According to the … Read more

Assets file project.assets.json not found. Run a NuGet package restore

I’m trying to use nopCommerce(Which is written in .NET Core) but when I want to run the project I face 52 Errors telling me Run a nuget package restore Assets file ~\obj\project.assets.json’ not found. Run a NuGet package restore to generate this file. Nop.Web.MVC.Testsote when I use the right click on the solution and selecting … Read more