TaskRunnerRunProject Method
Run the specified MSBuild project using MSBuild.exe or dotnet.exe
Namespace: SandcastleBuilder.Utils.BuildEngineAssembly: SandcastleBuilder.Utils (in SandcastleBuilder.Utils.dll) Version: 2024.9.12.0
public void RunProject(
string projectFile,
bool minimalOutput
)
Public Sub RunProject (
projectFile As String,
minimalOutput As Boolean
)
public:
void RunProject(
String^ projectFile,
bool minimalOutput
)
member RunProject :
projectFile : string *
minimalOutput : bool -> unit
Parameters
- projectFile String
- The project file to run
- minimalOutput Boolean
- True for minimal output, false for normal output
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.