void BuildStarted(object sender, BuildEventArgs e) { if (!options.CompileOnBuild) return; var action = new CompileTypeScriptFilesOnBuildAction(); action.CompileFiles(e.Buildable); }
void BuildStarted(object sender, BuildEventArgs e) { var action = new CompileTypeScriptFilesOnBuildAction(); action.CompileFiles(e.Projects); }