This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see Cake.Issues.
Summary
Reads issues from a single issue provider.
- Assembly
- Cake
.Issues .dll - Namespace
- Cake
.Issues - Containing Type
- Aliases
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 |
---|---|
Cake |
|
Cake |
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 |
Issues reported by issue provider. |