Summary
Analyses the specified projects with ReSharper's DupFinder.
The files can either be solutions and projects or a source files.
- Namespace
- Cake
.Common .Tools .DupFinder - Containing Type
- DupFinderAliases
Syntax
[CakeMethodAlias]
[CakeAliasCategory("DupFinder")]
public static void DupFinder(this ICakeContext context, IEnumerable<FilePath> files)
Examples
var projects = GetFiles("./src/**/*.csproj");
DupFinder(projects);
Attributes
Type | Description |
---|---|
Cake |
An attribute used to mark script method aliases. |
Cake |
An attribute used for documentation of alias methods/properties. |
Parameters
Name | Type | Description |
---|---|---|
context | ICakeContext | The context. |
files | IEnumerable |
The files to analyze. |
Return Value
Type | Description |
---|---|
void |