FluentBuild.Compilation.Target.Executable C# (CSharp) Method

Executable() public method

Builds a console application
public Executable ( Action args ) : void
args Action
return void
        public void Executable(Action<BuildTask> args)
        {
            _actionExcecutor.Execute(args, _compiler, "exe");
        }

Usage Example

示例#1
0
 public void Exe()
 {
     _subject.Executable(_action);
     _actionExcecutor.AssertWasCalled(x => x.Execute(_action, "csc.exe", "exe"));
 }