Esempio n. 1
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 = "";
        }
Esempio n. 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 = "";
		}
Esempio n. 3
0
 public LoomProject(string path)
     : base(path, new LoomOptions())
 {
     movieOptions = new LoomMovieOptions();
     LoomLibraries = new AssetCollection(this);
 }