
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()
- compile
-
Void compile()
- defaultTarget
-
override Target defaultTarget()
Default target is compile.
- dirs
-
File[] dirs
Required list of directories to compile. All C# source files in each directory will be compiled.
- full
-
Void full()
- libs
-
File[] libs
List of libraries to link to.
- output
-
File output
Required output file created by the compiler.
- targetType
-
Str targetType
Required output type. Possible values are
exe
,winexe
,library
ormodule
. -
override internal Void validate()
Validate subclass constructor setup required meta-data.