logo

abstract class

build::BuildCs

sys::Obj
  build::BuildScript
    build::BuildCs

BuildCs is the base class for build scripts used to manage building C# source code into a .NET exe or dll.

Slots

clean

Void clean()

Source

compile

Void compile()

Source

defaultTarget

override Target defaultTarget()

Default target is compile.

Source

dirs

File[] dirs

Required list of directories to compile. All C# source files in each directory will be compiled.

Source

full

Void full()

Source

libs

File[] libs

List of libraries to link to.

Source

output

File output

Required output file created by the compiler.

Source

targetType

Str targetType

Required output type. Possible values are exe, winexe, library or module.

Source