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

            _argumentBuilder = new ArgumentBuilder("/", "=");
        }
Example #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("/", " ");
 }
Example #4
0
 public ZipOptions(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
 public void Setup()
 {
     _excecutor = MockRepository.GenerateStub <IActionExcecutor>();
     _subject   = new Publish(_excecutor);
 }
Example #6
0
 public ZipOptions(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Example #7
0
 public Resgen(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Example #8
0
 public void Setup()
 {
     _actionExcecutor = MockRepository.GenerateStub<IActionExcecutor>();
     _subject = new Target(_actionExcecutor, "csc.exe");
     _action = x => x.OutputFileTo("temp");
 }
Example #9
0
 public RunOptions(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
 public UnitTestFrameworkArgs(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
 internal AssemblyInfoLanguage(IActionExcecutor executor)
 {
     _executor = executor;
 }
Example #12
0
 public Publish(IActionExcecutor excecutor)
 {
     _excecutor = excecutor;
 }
Example #13
0
 public void Setup()
 {
     _projectOrSolutionFilePath = "c:\\temp.sln";
     _mockExecutor = MockRepository.GenerateStub<IActionExcecutor>();
     _subject = new MsBuildTask(_mockExecutor).ProjectOrSolutionFilePath(_projectOrSolutionFilePath);
 }
Example #14
0
 internal Target(IActionExcecutor actionExcecutor, string compiler)
 {
     _actionExcecutor = actionExcecutor;
     _compiler        = compiler;
 }
Example #15
0
 public Resgen(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Example #16
0
 public void Setup()
 {
     _excecutor = MockRepository.GenerateStub<IActionExcecutor>();
     _subject = new Publish(_excecutor);
 }
Example #17
0
 public Publish(IActionExcecutor excecutor)
 {
     _excecutor = excecutor;
 }
Example #18
0
 public void Setup()
 {
     _mock = MockRepository.GenerateStub<IActionExcecutor>();
     _subject = new ZipOptions(_mock);
 }
Example #19
0
 public void Setup()
 {
     _mock    = MockRepository.GenerateStub <IActionExcecutor>();
     _subject = new ZipOptions(_mock);
 }
Example #20
0
 internal Compilers(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Example #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;
 }
Example #23
0
 internal Compilers(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Example #24
0
 public UnitTestFrameworkArgs(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }
Example #25
0
 internal Target(IActionExcecutor actionExcecutor, string compiler)
 {
     _actionExcecutor = actionExcecutor;
     _compiler = compiler;
 }
Example #26
0
 public RunOptions(IActionExcecutor actionExcecutor)
 {
     _actionExcecutor = actionExcecutor;
 }