ReSharper aliases

Built-In

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"

DupFinder

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

InspectCode

InspectCode(FilePath, InspectCodeSettings) Analyses the specified solution with ReSharper's InspectCode, using the specified settings.
InspectCode(FilePath) Analyses the specified solution with ReSharper's InspectCode.
InspectCodeFromConfig(FilePath) Runs ReSharper's InspectCode using the specified config file.