How to compile Twitter Bootstrap 3.0 LESS using Asp.net MVC 5 and Web Essentials 2013

前端 未结 2 924
遥遥无期
遥遥无期 2020-12-13 20:41

I\'ve set up Visual Studio 2013 RC and Web Essentials 2013. I\'m trying to create an Azure Cloud Service and a Web Role using ASP.N

相关标签:
2条回答
  • 2020-12-13 21:04

    Is possible to use 'lessc' command with same approach sample:

       lessc "$(ProjectDir)Content\bootstrap\bootstrap.less"  "$(ProjectDir)Content\bootstrap-compiled.css"
    
    0 讨论(0)
  • 2020-12-13 21:12

    UPDATE (29-SEP-2015):

    Leave Web Essentials and use LESS Compiler along with its Clean CSS Plugin.

    1. Download and install Node.js (32-bit) for Windows.
    2. Open node.js command prompt.
    3. Install LESS using the command: npm install -g less
    4. Install less-plugin-clean-css using the command: npm install -g less-plugin-clean-css
    5. Go to Project Properties > Build Events and copy-paste below command to Pre-build event command line box:
      lessc "$(ProjectDir)Content\bootstrap\bootstrap.less" "$(ProjectDir)Content\bootstrap.css" --clean-css="--s1 --advanced"
    6. Build the project and look for bootstrap.css at the specified location. (If not already, you may need to enable “Show All Files” settings in the Solution Explorer.)
    7. Include the bootstrap.css file into your project. View file properties and set its “Build Action” to “Content”. Update BundleConfig to include this compiled file into your StyleBundle.
    8. Select all .less files from \Content\bootstrap folder. View file properties and set its “Build Action” to “None”.

    UPDATE (24-SEP-2014):

    Since Twitter Boostrap has switched from RECESS to Grunt, I would recommend the new users looking for this solution to consider: LESS Compiler or Grunt.

    Please note that none of the solutions mentioned here use Web Essentials 2013.


    Finally, I decided to use RECESS recommended by Twitter. If you want to use pre-built bootstrap 3 less into css using Visual Studio 2013 (RC / RTM), you can follow the steps given below:

    1. Download and install Node.js (32-bit) for Windows.
    2. Install RECESS npm package globally – Open node.js command prompt and run the command:
      npm install recess –g
    3. Use NuGet Library Package Manager and install the Bootstrap Less Source 3.0.0 package to your Asp.Net MVC 5 Web / Azure Web Role project.
    4. Go to Project Properties > Build Events and copy-paste below command to Pre-build event command line: box:
      recess "$(ProjectDir)Content\bootstrap\bootstrap.less" --compress > "$(ProjectDir)Content\bootstrap-compiled.css"
    5. Build the project and look for bootstrap-compiled.css at the specified location. (If not already, you may need to enable “Show All Files” settings in the Solution Explorer.)
    6. Include the bootstrap-compiled.css file into your project. View file properties and set its “Build Action” to “Content”. Update BundleConfig to include this compiled file into your StyleBundle.
    7. Select all .less files from \Content\bootstrap folder. View file properties and set its “Build Action” to “None”.
    0 讨论(0)
提交回复
热议问题