I have this folders structure:
~/css/file1.less
~/css/folder/file2.less
What I want to do is importing file1.less inside file2.less, so in my file2.less I have this code:
@import "../file1.less";
This do not work, and the compiler crash when I build the project. I execute the compiler in Visual Studio 2010.
How can I import a less file placed in a parent folder?