ReSharperReportsAliases.

ReSharperReports(ICakeContext, FilePath, FilePath, ReSharperReportsSettings) Method

Summary

Runs ReSharperReports against the specified input FilePath, and outputs to specified output FilePath with the specified ReSharperReportsSettings

Syntax

public static void ReSharperReports(this ICakeContext context, FilePath inputFilePath, FilePath outputFilePath, ReSharperReportsSettings settings)

Examples

ReSharperReports("C:/temp/dupfinder-output.xml", "c:/temp/dupfinder-output-xsl.html", new ReSharperReportsSettings()
{
    XslFilePath = "c:/temp/dupfinder.xsl"
});
ReSharperReports("C:/temp/inspectcode-output.xml", "c:/temp/inspectcode-output-xsl.html", new ReSharperReportsSettings()
{
    XslFilePath = "c:/temp/inspectcode.xsl"
});
ReSharperReports("C:/temp/dupfinder-output.xml", "c:/temp/dupfinder-output-xsl.html", new ReSharperReportsSettings()
{
    XslFilePath = "c:/temp/dupfinder.xsl",
    LogFilePath = "c:/temp/resharperreports-dupfinder.log"
});
ReSharperReports("C:/temp/inspectcode-output.xml", "c:/temp/inspectcode-output-xsl.html", new ReSharperReportsSettings()
{
    XslFilePath = "c:/temp/inspectcode.xsl",
    LogFilePath = "c:/temp/resharperreports-inspectcode.log"
});

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
inputFilePath FilePath The input file path.
outputFilePath FilePath The output file path.
settings ReSharperReportsSettings The settings.

Return Value

Type Description
void