DupFinderAliases Class

Summary

Contains functionality related to ReSharper's dupFinder tool.

In order to use the commands for this alias, include the following in your build.cake file to download and install from nuget.org, or specify the ToolPath within the DupFinderSettings class:

#tool "nuget:?package=JetBrains.ReSharper.CommandLineTools"

Namespace
Cake.Common.Tools.DupFinder
Base Types
  • object
graph BT Type-->Base0["object"] Type["DupFinderAliases"] class Type type-node

Syntax

[CakeAliasCategory("ReSharper")]
public static class DupFinderAliases

Attributes

Type Description
CakeAliasCategoryAttribute An attribute used for documentation of alias methods/properties.

Methods

Name Value Summary
DupFinder(ICakeContext, FilePath, DupFinderSettings) void
Analyses the specified file with ReSharper's DupFinder using the specified settings. The file can either be a solution/project or a source file.
static
DupFinder(ICakeContext, FilePath) void
Analyses the specified file with ReSharper's DupFinder. The file can either be a solution/project or a source file.
static
DupFinder(ICakeContext, GlobPattern, DupFinderSettings) void
Analyses all files matching the specified pattern with ReSharper's DupFinder, using the specified settings.
static
DupFinder(ICakeContext, GlobPattern) void
Analyses all files matching the specified pattern with ReSharper's DupFinder.
static
DupFinder(ICakeContext, IEnumerable<FilePath>, DupFinderSettings) void
Analyses the specified projects with ReSharper's DupFinder using the specified settings. The files can either be solutions and projects or a source files.
static
DupFinder(ICakeContext, IEnumerable<FilePath>) void
Analyses the specified projects with ReSharper's DupFinder. The files can either be solutions and projects or a source files.
static
DupFinderFromConfig(ICakeContext, FilePath) void
Runs ReSharper's DupFinder using the provided config file.
static

Extension Methods

Name Value Summary
ToDictionary() IDictionary<string, object>
Requires the Cake.DeployParams addin