DotNetVersionDetectorAliases.

DotNetVersionDetector(ICakeContext, FilePath, DotNetVersionDetectorSettings) Method

Summary

Runs .Net Version Detector, and outputs to specified output FilePath with the specified DotNetVersionDetectorSettings

Syntax

public static void DotNetVersionDetector(this ICakeContext context, FilePath outputFilePath, DotNetVersionDetectorSettings settings)

Examples

DotNetVersionDetector("c:/temp/output.txt", new DotNetVersionDetectorSettings()
{
    Extended = true
});

Attributes

Type Description
CakeMethodAliasAttribute

Parameters

Name Type Description
context ICakeContext The context.
outputFilePath FilePath The output file path.
settings DotNetVersionDetectorSettings The settings.

Return Value

Type Description
void