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.InspectCode.
Summary
Gets an instance of a provider for issues reported by JetBrains Inspect Code using a log file from disk.
- Assembly
- Cake
.Issues .InspectCode .dll - Namespace
- Cake
.Issues .InspectCode - Containing Type
- Inspect
Code Issues Aliases
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 |
---|---|
Cake |
|
Cake |
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. |