Summary
Adds a custom logger.
Syntax
public static MSBuildSettings WithLogger(this MSBuildSettings settings, string loggerAssembly, string loggerClass = null, string loggerParameters = null)
Parameters
Name |
Type |
Description |
settings |
MSBuildSettings |
The settings. |
loggerAssembly |
string |
The assembly containing the logger. Should match the format {AssemblyName[,StrongName] | AssemblyFile}. |
loggerClass |
string |
The class implementing the logger. Should match the format [PartialOrFullNamespace.]LoggerClassName. If the assembly contains only one logger, class does not need to be specified. |
loggerParameters |
string |
Parameters to be passed to the logger. |
Return Value