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

WindowsExecutable() public method

Builds a windows executable
public WindowsExecutable ( Action args ) : void
args Action
return void
        public void WindowsExecutable(Action<BuildTask> args)
        {
            _actionExcecutor.Execute(args, _compiler, "winexe");
        }

Usage Example

Example #1
0
 public void WinExe()
 {
     _subject.WindowsExecutable(_action);
     _actionExcecutor.AssertWasCalled(x => x.Execute(_action, "csc.exe", "winexe"));
 }