我正在尝试了解如何将 .less 转换与 MVC4 一起使用。
我想在运行时用我自己的值以编程方式替换 .less 变量。
给定以下代码,我如何将我的变量值(要替换)传递给解析器?
public class CustomTransform : IBundleTransform
{
private readonly CssMinify _cssMinify = new CssMinify();
public void Process(BundleContext context, BundleResponse response)
{
response.Content = dotless.Core.Less.Parse(response.Content);
_cssMinify.Process(context, response);
}
}
编辑:一个示例解决方案将是惊人的。