Skip to content

Instantly share code, notes, and snippets.

@kristofclaes
Created August 30, 2012 07:12
Show Gist options
  • Save kristofclaes/3523637 to your computer and use it in GitHub Desktop.
Save kristofclaes/3523637 to your computer and use it in GitHub Desktop.
LESS minifier for use in ASP.NET 4.5 bundling
public class LessMinify : IBundleTransform
{
public void Process(BundleContext context, BundleResponse response)
{
response.Content = dotless.Core.Less.Parse(response.Content);
response.ContentType = "text/css";
var cssMinifier = new CssMinify();
cssMinifier.Process(context, response);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment