I've just started using Chirpy (Both v2.01 and v2.03 - http://chirpy.codeplex.com/), and whilst it works great with .js and .css files, I'm having a bit of trouble with any Razor Syntax in VS 2010.
Essentially, I have a Razor file which looks like follows:
@{ ViewBag.Title = "Blah"}
@section Styles{ ... }
@section Scripts{ ... }
html
In various places I use @foreach loops, and use a either "@:" or to notify what is code and what is to be output.
All said and done, Chirpy gives me hundreds of errors. They are all either:
Error 60 "missing name after .@"
Error 62 "syntax error"
Error 63 "invalid property id"
Error 67 "missing ; before statement"
Error 68 "illegally formed XML syntax"
There are actually no problems in the cshtml files as they all run perfectly in firefox/chrome with no errors.
Could anyone help? Would love some inline js minification if it's available.
I have posted this query on the codeplex site also (and will report back if I get a response): http://chirpy.codeplex.com/discussions/283079
If all else fails, I'll jump into the code (it's open source). Anyone offer a better place to start than here: http://chirpy.codeplex.com/SourceControl/changeset/view/d003dad47915#Engines%2fViewEngine.cs ?
Cheers, Daz.