Skip to content

ICompile Interface

Definition

A build which compiles code.

C#
public interface ICompile : IHasGitVersion, IRestore, INukeBuild

Properties

Compile

Gets the target to compile.

C#
Target Compile { get; }

CompileSettingsBase

Gets the default compile settings.

C#
Configure<DotNetBuildSettings> CompileSettingsBase { get; }

CompileSettings

Gets the custom compile settings.

C#
Configure<DotNetBuildSettings> CompileSettings { get; }

Methods

RunCompile()

Compiles code.

C#
void RunCompile()

RunCompileWithBinLog()

Compiles code and outputs a binlog file.

C#
void RunCompileWithBinLog()