DupFinderAliases.

DupFinder(ICakeContext, IEnumerable<FilePath>) Method

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
CakeMethodAliasAttribute An attribute used to mark script method aliases.
CakeAliasCategoryAttribute An attribute used for documentation of alias methods/properties.

Parameters

Name Type Description
context ICakeContext The context.
files IEnumerable<FilePath> The files to analyze.

Return Value

Type Description
void