这是我用来将文件解析.less
为.css
文件的 LessTransform 类:
public class LessTransform : IBundleTransform
{
public void Process(BundleContext context, BundleResponse response)
{
response.Content = dotless.Core.Less.Parse(response.Content);
response.ContentType = "text/css";
}
}
我正在尝试bootstrap.css
使用我的LessTransform
课程解析下载的文件。当方法运行时,最初response.Content
有 Bootstrap 的内容。
调用后dotless.Core.Less.Parse()
,response.Content
为空白。解析器静默失败。
为什么?