I am currently updating my MVC application from ASP.NET 5 RC1 to ASP.NET Core RC2. I have updated my code to match the changes (no error messages at least) I am how ever getting a error when trying to run my application:
Severity Code Description Project File Line Suppression State
Error {projectPath}\error CS2001: Source file 'C:\Users\Frey\Documents\bundlrs-mvc6\bundlrs MVC6\MVC6.deps.json' could not be found. bundlrs MVC6 C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v14.0\DotNet\Microsoft.DotNet.Common.Targets 241
The code the error is referring to in the file is:
<Dnx
RuntimeExe="$(SDKToolingExe)"
Condition="'$(_DesignTimeHostBuild)' != 'true'"
ProjectFolder="$(MSBuildProjectDirectory)"
Arguments="$(_BuildArguments)"
/>
As Dnx is deprecated in ASP.NET core i guess i still need to change some project setting. After a few hours of googling my issue with absolutely no luck, i hope someone here will be able to help me out, or just point me in a direction :)