示例#1
0
文件: Engine.cs 项目: jthelin/Nake
 public BuildResult Build(string code, IDictionary<string, string> substitutions, bool debug)
 {
     var magic = new PixieDust(Compile(code));
     return magic.Apply(substitutions, debug);
 }
示例#2
0
文件: Engine.cs 项目: vansha/Nake
        public BuildResult Build(string code, IDictionary <string, string> substitutions, bool debug)
        {
            var magic = new PixieDust(Compile(code));

            return(magic.Apply(substitutions, debug));
        }