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

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