I am getting an exception (System.Web.HTTPException) in a fresh ASP.NET application. Steps to reproduce: Visual Studio 2017 .NET Framework 4.6.2
Create new project of type ASP.NET Web Application (.NET Framework)
Select MVC as the project template
System.Web.HttpException in BundleConfig.cs, line 11
bundles.Add(new ScriptBundle("~/bundles/jquery").Include( "~/Scripts/jquery-{version}.js"));
Click Continue
4 additional exceptions of type:
Exception thrown: 'Microsoft.CSharp.RuntimeBinder.RuntimeBinderException' in Microsoft.CSharp.dll
Any ideas why a fresh project would throw exceptions like this?
Thanks, Doug