C# Class FluentBuild.Compilation.Target

Determines the type of assembly to build
Datei anzeigen Open project: SkightTeam/eLiteWeb Class Usage Examples

Public Methods

Method Description
Executable ( Action args ) : void

Builds a console application

Library ( Action args ) : void

Builds a library assembly (i.e. a dll)

Module ( Action args ) : void

Builds a module

WindowsExecutable ( Action args ) : void

Builds a windows executable

Protected Methods

Method Description
Target ( string compiler ) : System

Private Methods

Method Description
Target ( IActionExcecutor actionExcecutor, string compiler ) : System

Method Details

Executable() public method

Builds a console application
public Executable ( Action args ) : void
args Action
return void

Library() public method

Builds a library assembly (i.e. a dll)
public Library ( Action args ) : void
args Action
return void

Module() public method

Builds a module
public Module ( Action args ) : void
args Action
return void

Target() protected method

protected Target ( string compiler ) : System
compiler string
return System

WindowsExecutable() public method

Builds a windows executable
public WindowsExecutable ( Action args ) : void
args Action
return void