public string Compile(string path, IList <string> dependentFileList = null)
 {
     return(WrappedItem.Compile(path, dependentFileList));
 }
Example #2
0
 public string Compile(string source)
 {
     return(WrappedItem.Compile(source));
 }
 public string Compile(string source, params object[] args)
 {
     return(WrappedItem.Compile(source, args));
 }
Example #4
0
 public string Compile(string path, bool compressed, IList <string> dependentFileList)
 {
     return(WrappedItem.Compile(path, compressed, dependentFileList));
 }