C# Class Monobjc.MSBuild.Utilities.ExecutionLogger

MSBuild specific implementation of the IExecutionLogger.
Inheritance: IExecutionLogger
Exibir arquivo Open project: Monobjc/monobjc-tools

Public Methods

Method Description
ExecutionLogger ( Task task ) : Microsoft.Build.Utilities

Initializes a new instance of the ExecutionLogger class.

LogDebug ( string message ) : void

Logs the debug message.

LogError ( string message ) : void

Logs the error message.

LogInfo ( string message ) : void

Logs the info message.

LogWarning ( string message ) : void

Logs the warning message.

Method Details

ExecutionLogger() public method

Initializes a new instance of the ExecutionLogger class.
public ExecutionLogger ( Task task ) : Microsoft.Build.Utilities
task Microsoft.Build.Utilities.Task The task.
return Microsoft.Build.Utilities

LogDebug() public method

Logs the debug message.
public LogDebug ( string message ) : void
message string The message.
return void

LogError() public method

Logs the error message.
public LogError ( string message ) : void
message string The message.
return void

LogInfo() public method

Logs the info message.
public LogInfo ( string message ) : void
message string The message.
return void

LogWarning() public method

Logs the warning message.
public LogWarning ( string message ) : void
message string The message.
return void