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