void BuildStarted(object sender, BuildEventArgs e)
        {
            if (!options.CompileOnBuild)
                return;

            var action = new CompileTypeScriptFilesOnBuildAction();
            action.CompileFiles(e.Buildable);
        }
Ejemplo n.º 2
0
        void BuildStarted(object sender, BuildEventArgs e)
        {
            var action = new CompileTypeScriptFilesOnBuildAction();

            action.CompileFiles(e.Projects);
        }
		void BuildStarted(object sender, BuildEventArgs e)
		{
			var action = new CompileTypeScriptFilesOnBuildAction();
			action.CompileFiles(e.Projects);
		}