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

I read that now in VS2012 there is support without a compiler. I mean support for the Less compiler, which compiles in CSS.

However, when I open the .less file, it still gives me only one panel less and does not seem to compile.

How can I enable support without support.

How about support for VS2012 Release 3 or VS2013. Is there any support for .less in any of these?

+6
source share
2 answers

Visual Studio does not have an automatic compilation function for fewer files. It provides only syntax highlighting for .less files.

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

+7
source

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

Perhaps you have the ability to run and track your smaller files, and it will automatically compile them when you save.

This helped me compile some files that use modern Less functions, and SimpLess ( http://wearekiss.com/simpless ) was unable to compile them.

0
source

Source: https://habr.com/ru/post/949318/


All Articles