Determines the type of assembly to build
Esempio n. 1
0
 public void Setup()
 {
     _actionExcecutor = MockRepository.GenerateStub<IActionExcecutor>();
     _subject = new Target(_actionExcecutor, "csc.exe");
     _action = x => x.OutputFileTo("temp");
 }
Esempio n. 2
0
 public void DefaultConstructor()
 {
     var subject = new Target("csc.exe");
 }