Summary
Reads issues from a single issue provider.
Syntax
public static IEnumerable<IIssue> ReadIssues(this ICakeContext context, IIssueProvider issueProvider, DirectoryPath repositoryRoot)
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. |
issueProvider |
IIssueProvider |
The provider for issues. |
repositoryRoot |
DirectoryPath |
Root path of the repository. |
Return Value
Type |
Description |
IEnumerable<IIssue> |
Issues reported by issue provider. |