本文介绍了MVC 4智能感知不工作的剃刀在Visual Studio 2010的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用Visual Studio 2010与ASP.NET MVC4和剃刀语法的IntelliSense没有在应用程序的意见为我工作。

我该怎么办?


解决方案

另外从

报价

http://sebnilsson.com/1091244048/making-mvc-3-razor-intellisense-work-after-installing-mvc-4-beta/

 <appSettings>
     <add key="webpages:Version" value="1.0.0.0"/>
     <!-- ... -->
 </appSettings>

eg:

<Reference Include="System.Web.WebPages, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"/>

<Reference Include="System.Web.Helpers, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" />

--

Also a similar questionMVC 3 Visual Studio 2010 Razor Model intellisense not working

Also you may need to install VS 2010 SP1 .

Edit:

Also see Required updates on this page
http://www.asp.net/whitepapers/mvc4-release-notes#_Toc303253815

这篇关于MVC 4智能感知不工作的剃刀在Visual Studio 2010的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 22:59