Summary
Provides the ability to output post-build messages (with filename and line number) to Console.Error. This interface is used by
PostBuildChecker.RunPostBuildChecks(string, params Assembly[]).
Instance methods
void | Error(string message, params string[] tokens) | When implemented in a class, searches the source directory for the first occurrence of the first token in tokens,
and then starts searching there to find the first occurrence of each of the subsequent tokens within the same file. When found,
outputs the error message including the filename and line number where the last token was found. |
void | Error(string message, string filename, int lineNumber, int? columnNumber = null) | When implemented in a class, outputs the error message including the specified filename, lineNumber and optional columnNumber. |
void | Warning(string message, params string[] tokens) | When implemented in a class, searches the source directory for the first occurrence of the first token in tokens,
and then starts searching there to find the first occurrence of each of the subsequent tokens within the same file. When found,
outputs the warning message including the filename and line number where the last token was found. |
void | Warning(string message, string filename, int lineNumber, int? columnNumber = null) | When implemented in a class, outputs the warning message including the specified filename, lineNumber and optional columnNumber. |