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.DupFinder.
Summary
Gets an instance of a provider for issues reported by JetBrains dupFinder using log file content.
- Assembly
- Cake
.Issues .DupFinder .dll - Namespace
- Cake
.Issues .DupFinder - Containing Type
- Dup
Finder Issues Aliases
Syntax
public static IIssueProvider DupFinderIssuesFromContent(this ICakeContext context, string logFileContent)
Examples
Read issues reported by JetBrains dupFinder:
var issues =
ReadIssues(
DupFinderIssuesFromContent(logFileContent)),
@"c:\repo");
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
logFileContent | string | Content of the dupFinder log file. |
Return Value
Type | Description |
---|---|
IIssueProvider | Instance of a provider for issues reported by JetBrains dupFinder. |