Razor Generator doesn't seem to allow me to write variables inside of things like href="@variable", similarly with style attributes and such. The generated code certainly used to work, and nothing has been changed but it breaks if I generate the compiled view again. The method below is used in the regeneration:
WriteAttributeTo(__razor_helper_writer, "href", Tuple.Create(" href=\"", 1390), Tuple.Create("\"", 1464)
//does not exist in the current context
Where as before there was only WriteLiteralTo and WriteTo in the code, no WriteAttributeTo:
WebViewPage.WriteLiteralTo(@__razor_helper_writer, " <span class=\"tag\">\r\n <a href=\"");
#line 58 "..\..\Extensions\Helpers\ListHelpers.cshtml"
Comments: Yes, I am using MVC 4 in the application. Does Razor Generator support MVC 4 at the moment? Are there known issues with it?
WriteAttributeTo(__razor_helper_writer, "href", Tuple.Create(" href=\"", 1390), Tuple.Create("\"", 1464)
//does not exist in the current context
Where as before there was only WriteLiteralTo and WriteTo in the code, no WriteAttributeTo:
WebViewPage.WriteLiteralTo(@__razor_helper_writer, " <span class=\"tag\">\r\n <a href=\"");
#line 58 "..\..\Extensions\Helpers\ListHelpers.cshtml"
Comments: Yes, I am using MVC 4 in the application. Does Razor Generator support MVC 4 at the moment? Are there known issues with it?