/// <inheritdoc />
 public string CompileFile(string filePath, LessCompilerSettings settings)
 {
     if (settings != null)
     {
         return(this.compiler.CompileFile(filePath, settings.Minify));
     }
     return(this.compiler.CompileFile(filePath, this.ShouldMinify));
 }
 /// <inheritdoc />
 public string CompileFile(string filePath, LessCompilerSettings settings)
 {
     if (settings != null)
     {
         return this.compiler.CompileFile(filePath, settings.Minify);
     }
     return this.compiler.CompileFile(filePath, this.ShouldMinify);
 }
 public string Compile(Stream less, LessCompilerSettings settings)
 {
     throw new NotImplementedException();
 }
 public string Compile(Stream less, LessCompilerSettings settings)
 {
     throw new NotImplementedException();
 }