Esempio n. 1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="MsBuildTask" /> class.
        /// </summary>
        /// <param name="executor">The executor.</param>
        /// <param name="executionEnvironment">The execution environment.</param>
        /// <param name="shadowCopier">The shadow copier.</param>
        /// <remarks></remarks>
        public MsBuildTask(ProcessExecutor executor, IExecutionEnvironment executionEnvironment, IShadowCopier shadowCopier)
        {
            this.executor             = executor;
            this.executionEnvironment = executionEnvironment;
            this.shadowCopier         = shadowCopier;

            this.Executable = GetDefaultExecutable();
            this.Timeout    = DefaultTimeout;
            this.Priority   = ProcessPriorityClass.Normal;
        }
Esempio n. 2
0
        /// <summary>
        /// Initializes a new instance of the <see cref="MsBuildTask" /> class.	
        /// </summary>
        /// <param name="executor">The executor.</param>
        /// <param name="executionEnvironment">The execution environment.</param>
        /// <param name="shadowCopier">The shadow copier.</param>
        /// <remarks></remarks>
		public MsBuildTask(ProcessExecutor executor, IExecutionEnvironment executionEnvironment, IShadowCopier shadowCopier)
		{
			this.executor = executor;
			this.executionEnvironment = executionEnvironment;
			this.shadowCopier = shadowCopier;

			this.Executable = GetDefaultExecutable();
            this.Timeout = DefaultTimeout;
            this.Priority = ProcessPriorityClass.Normal;
        }
Esempio n. 3
0
        public MsBuildTask(ProcessExecutor executor, IExecutionEnvironment executionEnvironment, IShadowCopier shadowCopier)
        {
            this.executor = executor;
            this.executionEnvironment = executionEnvironment;
            this.shadowCopier = shadowCopier;

            Executable = GetDefaultExecutable();
        }
Esempio n. 4
0
 public TqNunitTask(ProcessExecutor executor, IExecutionEnvironment executionEnvironment, IShadowCopier shadowCopier)
 {
     this.executor             = executor;
     this.executionEnvironment = executionEnvironment;
 }
Esempio n. 5
0
 public NugetTask(ProcessExecutor executor, IExecutionEnvironment executionEnvironment, IShadowCopier shadowCopier)
 {
     this.executor             = executor;
     this.executionEnvironment = executionEnvironment;
     Executable = this.GetDefaultExecutable();
 }