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 specified settings.
- Assembly
- Cake
.Issues .DupFinder .dll - Namespace
- Cake
.Issues .DupFinder - Containing Type
- Dup
Finder Issues Aliases
Syntax
public static IIssueProvider DupFinderIssues(this ICakeContext context, DupFinderIssuesSettings settings)
Examples
Read issues reported by JetBrains dupFinder:
var settings =
new DupFinderIssuesSettings(
@"c:\build\DupFinder.xml));
var issues =
ReadIssues(
DupFinderIssues(settings),
@"c:\repo");
Attributes
Type | Description |
---|---|
Cake |
|
Cake |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
settings | Dup |
Settings for reading the dupFinder log. |
Return Value
Type | Description |
---|---|
IIssueProvider | Instance of a provider for issues reported by JetBrains dupFinder. |