Example #1
0
        public Project(string path)
        {
            this.path = path;

            hiddenPaths = new HiddenPathCollection();
            storage     = new Dictionary <string, string>();
        }
Example #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 = "";
        }
Example #3
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 = "";
		}