user1943020
user1943020

Reputation:

How can I get .less compiler support in Visual Studio 2012 Release 2?

I read that now in VS2012 there is .less compiler support. I mean support for the Less compiler that compiles into CSS.

However when I open a .less file it still only gives me the single less pane and does not seem to compile.

How can I enable .less support.

What about VS2012 Release 3 or VS2013 support. Is there better support for .less in either of those?

Upvotes: 7

Views: 7221

Answers (2)

Ashraf Sabry
Ashraf Sabry

Reputation: 3182

Although not a Visual Studio extension, but I recommend WinLess (http://winless.org/) as a solution for compiling Less files for Windows users.

You may have it running and tracking your Less files, and it will automatically compile them when saved.

It worked for me compiling some files that use modern Less features, while SimpLess (http://wearekiss.com/simpless) failed to compile them.

Upvotes: 0

Anirudha Gupta
Anirudha Gupta

Reputation: 9299

Visual studio doesn't have an auto-compilation feature for less files. It only provides syntax-highlighting for .less files.

You can compile your LESS files using a plugin like Web Workbench or Web Essentials 2012

Upvotes: 6

Related Questions