ASP.NET MVC 3 Razor Intellisense

Have downloaded and installed ASP.NET MVC 3 (final release) and still don't have intellisense in Razor views? What's wrong?

+4
source share
3 answers

Install the ReSharper 5.1.2 update, and then run ASP.NET MVC 3 Razor Intellisense again.

ReSharper 5.1.2 does not interfere with Visual Studio IntelliSense in the Razor ASP.NET MVC 3 syntax. Previously, ReSharper 5.x had certain problems with Razor IntelliSense, which are discussed in 5.1.2. In particular, ReSharper 5.1.2 does not prevent Visual Studio from automatically automatically submitting its own IntelliSense web pages in .cshtml and .vbhtml: both code completion and parameter information work as expected.

http://blogs.jetbrains.com/dotnet/2011/01/resharper-512-is-released/

+4
source

If you have R # installed, change the settings to use VS Intellisense instead of R #. R # does not yet have such an opportunity for Razor. If you still want to use it, you can try to press the spacebar after the period

+2
source

Do you update service packs. At the top of my head, I think you need a beta version of Visual Studio Service Pack 1 to work

0
source

Source: https://habr.com/ru/post/1335738/


All Articles