Пример #1
0
 public void OnClasspathChanged()
 {
     absClasspaths = null;
     if (ClasspathChanged != null)
     {
         ClasspathChanged(this);
     }
 }
Пример #2
0
        public event ChangedHandler ClasspathChanged; // inner operation changed the classpath

        public Project(string path, CompilerOptions compilerOptions)
        {
            this.path            = path;
            this.compilerOptions = compilerOptions;

            TestMovieBehavior = TestMovieBehavior.Default;

            classpaths     = new PathCollection();
            compileTargets = new PathCollection();
            hiddenPaths    = new HiddenPathCollection();
            libraryAssets  = new AssetCollection(this);

            InputPath      = "";
            OutputPath     = "";
            PreBuildEvent  = "";
            PostBuildEvent = "";
        }