protected internal BuildTask(IActionExcecutor actionExcecutor, string compiler, string targetType) { _actionExcecutor = actionExcecutor; Compiler = compiler; TargetType = targetType; _argumentBuilder = new ArgumentBuilder("/", ":"); }
internal MsBuildTask(IActionExcecutor actionExcecutor) { _actionExcecutor = actionExcecutor; Targets = new List <string>(); Properties = new NameValueCollection(); _argumentBuilder = new ArgumentBuilder("/", "="); }
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); }
public Resgen(IActionExcecutor actionExcecutor) { _actionExcecutor = actionExcecutor; }
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; }
public Publish(IActionExcecutor excecutor) { _excecutor = excecutor; }
public void Setup() { _projectOrSolutionFilePath = "c:\\temp.sln"; _mockExecutor = MockRepository.GenerateStub<IActionExcecutor>(); _subject = new MsBuildTask(_mockExecutor).ProjectOrSolutionFilePath(_projectOrSolutionFilePath); }
internal Target(IActionExcecutor actionExcecutor, string compiler) { _actionExcecutor = actionExcecutor; _compiler = compiler; }
public void Setup() { _excecutor = MockRepository.GenerateStub<IActionExcecutor>(); _subject = new Publish(_excecutor); }
public void Setup() { _mock = MockRepository.GenerateStub<IActionExcecutor>(); _subject = new ZipOptions(_mock); }
public void Setup() { _mock = MockRepository.GenerateStub <IActionExcecutor>(); _subject = new ZipOptions(_mock); }
internal Compilers(IActionExcecutor actionExcecutor) { _actionExcecutor = actionExcecutor; }
public void Setup() { _actionExcecutor = MockRepository.GenerateStub <IActionExcecutor>(); _subject = new Target(_actionExcecutor, "csc.exe"); _action = x => x.OutputFileTo("temp"); }