Summary
Gets an instance of a provider for issues reported by JetBrains Inspect Code using a log file from disk.
Syntax
public static IIssueProvider InspectCodeIssuesFromFilePath(this ICakeContext context, FilePath logFilePath)
Examples
Read issues reported by JetBrains Inspect Code:
var issues =
ReadIssues(
InspectCodeIssuesFromFilePath(@"c:\build\InspectCode.log"),
@"c:\repo");
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
CakeAliasCategoryAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
The context. |
logFilePath |
FilePath |
Path to the InspectCode log file. |
Return Value
Type |
Description |
IIssueProvider |
Instance of a provider for issues reported by JetBrains Inspect Code. |