The latest version of RazorGenerator (1.6.3) produces ASPPARSE error when '@' character is used immediatelly after a tag name, for example in ASP.NET MVC [_WebGridRenderer.cshtml](http://aspnetwebstack.codeplex.com/SourceControl/latest#src/System.Web.Helpers/WebGrid/_WebGridRenderer.cshtml):
```
<thead>
<tr@CssClass(headerStyle)>
```
_... error ASPPARSE: Encountered end tag "thead" with no matching start tag. Are your start/end tags properly balanced?_
The error does not appear when RazorGenerator is not enabled.
Comments: Ok, found the cause: The solution has enabled compile-time checking for MVC views `<MvcBuildViews>true</MvcBuildViews>`. When disabled (default), the error "_error ASPPARSE: Encountered end tag "thead" with no matching start tag. Are your start/end tags properly balanced?_" does not appear (only warning).
```
<thead>
<tr@CssClass(headerStyle)>
```
_... error ASPPARSE: Encountered end tag "thead" with no matching start tag. Are your start/end tags properly balanced?_
The error does not appear when RazorGenerator is not enabled.
Comments: Ok, found the cause: The solution has enabled compile-time checking for MVC views `<MvcBuildViews>true</MvcBuildViews>`. When disabled (default), the error "_error ASPPARSE: Encountered end tag "thead" with no matching start tag. Are your start/end tags properly balanced?_" does not appear (only warning).