TaskRunnerRunProject Method

Run the specified MSBuild project using MSBuild.exe or dotnet.exe

Definition

Namespace: SandcastleBuilder.Utils.BuildEngine
Assembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2024.2.18.0
public void RunProject(
	string projectFile,
	bool minimalOutput
)

Parameters

projectFile  String
The project file to run
minimalOutput  Boolean
True for minimal output, false for normal output

Remarks

A standard set of command line options will be used (/nologo /clp:NoSummary) along with the given verbosity level. The 64-bit version of MSBuild will be used if available on 64-bit systems.

See Also