Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is antlr3 and why is it referenced by default in a VS2012 MVC4 project?

Tags:

I have created a new MVC4 project in VS2012, and there's a new reference I've never seen nor heard of, googling seems to land me on the occasional syntax or grammar post. Can you now write code generation in VS2010 with something besides T4? Can you write in multiple languages in the same project if you have one defined in the project? what is it?

like image 561
Maslow Avatar asked Jun 02 '12 20:06

Maslow


People also ask

What is MVC4?

ASP.NET MVC 4 is a framework for building scalable, standards-based web applications using well-established design patterns and the power of the ASP.NET and the . NET framework. This new, fourth version of the framework focuses on making mobile web application development easier.


1 Answers

The WebGrease package (http://nuget.org/packages/WebGrease), which the MVC 4 templates make use of, is dependent on this binary. It doesn't have anything to do with T4, multiple languages in the project, or anything else IDE-related.

like image 123
Levi Avatar answered Nov 18 '22 14:11

Levi