FluentBuild.Compilation.Target.WindowsExecutable C# (CSharp) Méthode

WindowsExecutable() public méthode

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

Usage Example

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