.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
は空白です。パーサーは静かに失敗しています。
なんで?