VS Accidents with RAZOR VBHTML

For some reason, with the Razor view engine, VS crashes on me. I copied the contents of CSHTML to a VBHTML file and started reformatting it, and VS crashed into me twice when I change the syntax of an auxiliary or functional method:

@helper SomeHelper(string text) 

to

 @Helper SomeHelper(text As String) 

Does anyone else understand this? The whole machine must be rebooted to make intellisense / markup highlighing work.

Thanks.

+6
c # asp.net-mvc-3 razor
source share
1 answer

If you are using Visual Studio 2010, I suggest installing SP1. Improved support for Razor views.

Download link

Change List Link

0
source share

All Articles