示例#1
0
 internal RemoteProjectBuilder(string file, RemoteBuildEngine engine)
 {
     this.file      = file;
     this.engine    = engine;
     builder        = engine.LoadProject(file);
     referenceCache = new Dictionary <string, string[]> ();
 }
		internal RemoteProjectBuilder (string file, RemoteBuildEngine engine)
		{
			this.engine = engine;
			builder = engine.LoadProject (file);
		}
 internal RemoteProjectBuilder(string file, RemoteBuildEngine engine)
 {
     this.engine = engine;
     builder     = engine.LoadProject(file);
 }
		internal RemoteProjectBuilder (string file, RemoteBuildEngine engine)
		{
			this.file = file;
			this.engine = engine;
			builder = engine.LoadProject (file);
			referenceCache = new Dictionary<string, string[]> ();
		}
		internal RemoteProjectBuilder (string file, string solutionFile, string binPath, RemoteBuildEngine engine)
		{
			this.engine = engine;
			builder = engine.LoadProject (file, solutionFile, binPath);
		}
 internal RemoteProjectBuilder(string file, string solutionFile, string binPath, RemoteBuildEngine engine)
 {
     this.engine = engine;
     builder     = engine.LoadProject(file, solutionFile, binPath);
 }