Beispiel #1
0
 protected internal BuildTask(IActionExcecutor actionExcecutor, string compiler, string targetType)
 {
     _actionExcecutor = actionExcecutor;
     Compiler         = compiler;
     TargetType       = targetType;
     _argumentBuilder = new ArgumentBuilder("/", ":");
 }
Beispiel #2
0
        internal MsBuildTask(IActionExcecutor actionExcecutor)
        {
            _actionExcecutor = actionExcecutor;
            Targets          = new List <string>();
            Properties       = new NameValueCollection();

            _argumentBuilder = new ArgumentBuilder("/", "=");
        }
Beispiel #3
0
 internal Executable(IMessageProcessor messageProcessor, IActionExcecutor actionExcecutor)
 {
     _messageProcessor = messageProcessor;
     _errorLock        = new object();
     _outputLock       = new object();
     _error            = new StringBuilder();
     _output           = new StringBuilder();
     _actionExcecutor  = actionExcecutor;
     _argumentBuilder  = new ArgumentBuilder("/", " ");
 }
 public ZipOptions(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
 public void Setup()
 {
     _excecutor = MockRepository.GenerateStub <IActionExcecutor>();
     _subject   = new Publish(_excecutor);
 }
Beispiel #6
0
 public ZipOptions(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Beispiel #7
0
 public Resgen(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Beispiel #8
0
 public void Setup()
 {
     _actionExcecutor = MockRepository.GenerateStub<IActionExcecutor>();
     _subject = new Target(_actionExcecutor, "csc.exe");
     _action = x => x.OutputFileTo("temp");
 }
 public RunOptions(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
 public UnitTestFrameworkArgs(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
 internal AssemblyInfoLanguage(IActionExcecutor executor)
 {
     _executor = executor;
 }
Beispiel #12
0
 public Publish(IActionExcecutor excecutor)
 {
     _excecutor = excecutor;
 }
Beispiel #13
0
 public void Setup()
 {
     _projectOrSolutionFilePath = "c:\\temp.sln";
     _mockExecutor = MockRepository.GenerateStub<IActionExcecutor>();
     _subject = new MsBuildTask(_mockExecutor).ProjectOrSolutionFilePath(_projectOrSolutionFilePath);
 }
Beispiel #14
0
 internal Target(IActionExcecutor actionExcecutor, string compiler)
 {
     _actionExcecutor = actionExcecutor;
     _compiler        = compiler;
 }
Beispiel #15
0
 public Resgen(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Beispiel #16
0
 public void Setup()
 {
     _excecutor = MockRepository.GenerateStub<IActionExcecutor>();
     _subject = new Publish(_excecutor);
 }
Beispiel #17
0
 public Publish(IActionExcecutor excecutor)
 {
     _excecutor = excecutor;
 }
Beispiel #18
0
 public void Setup()
 {
     _mock = MockRepository.GenerateStub<IActionExcecutor>();
     _subject = new ZipOptions(_mock);
 }
 public void Setup()
 {
     _mock    = MockRepository.GenerateStub <IActionExcecutor>();
     _subject = new ZipOptions(_mock);
 }
Beispiel #20
0
 internal Compilers(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Beispiel #21
0
 public void Setup()
 {
     _actionExcecutor = MockRepository.GenerateStub <IActionExcecutor>();
     _subject         = new Target(_actionExcecutor, "csc.exe");
     _action          = x => x.OutputFileTo("temp");
 }
 internal AssemblyInfoLanguage(IActionExcecutor executor)
 {
     _executor = executor;
 }
Beispiel #23
0
 internal Compilers(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Beispiel #24
0
 public UnitTestFrameworkArgs(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Beispiel #25
0
 internal Target(IActionExcecutor actionExcecutor, string compiler)
 {
     _actionExcecutor = actionExcecutor;
     _compiler = compiler;
 }
Beispiel #26
0
 public RunOptions(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }