After installing Xamarin Studio Visual Studio 2012 IntelliSense & Highlighting stopped working for ASP.NET MVC 5 Web App.
Syntax and IntelliSense for my MVC 4 Web Projects are there when I open or create a new MVC 4 Web project. Syntax and IntelliSense for my MVC 5 Web Projects are gone and I believe it happened right after I installed Xamarin Studio which has a few SDKs and some other stuff that integrates into Visual Studio.
Is anyone familiar with this issue?
PS: I just created a New MVC 4 and MVC 5 projects and looking for what could be causing the issue - because MVC 4 project's IntelliSense & Highlighting is there and MVC 5's is not.
Here is a Web.Config file for MVC 5
<?xml version="1.0" encoding="utf-8"?>
<!--
For more information on how to configure your ASP.NET application, please visit
http://go.microsoft.com/fwlink/?LinkId=301880
-->
<configuration>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<system.web>
<compilation debug="true" targetFramework="4.5" />
<httpRuntime targetFramework="4.5" />
</system.web>
</configuration>
Here is a packages.config file for MVC 5
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.Mvc" version="5.0.0" targetFramework="net45" />
<package id="Microsoft.AspNet.Razor" version="3.0.0" targetFramework="net45" />
<package id="Microsoft.AspNet.WebPages" version="3.0.0" targetFramework="net45" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net45" />
</packages>