Note: This API documentation is for FAKE version 4. The migration API documentation can be found here. The API documentation for the new fake 5 modules can be found here

NDepend

Contains a task which allows to run NDepend on .NET project files.

Nested types and modules

TypeDescription
NDependParams

Functions and values

Function or valueDescription
buildNDependArgs(parameters)
Signature: parameters:NDependParams -> string
getWorkingDir(workingDir)
Signature: workingDir:string -> string
NDepend(setParams)
Signature: setParams:(NDependParams -> NDependParams) -> unit

Runs NDepend on a .NET project file.

Parameters

  • setParams - Function used to manipulate the default NDependDefaults value.

Sample

1: 
2: 
3: 
4: 
 NDepend (fun p -> { p with 
                    ProjectFile = currentDirectory @@ "NDependProjectFile.ndproj"
                    CoverageFiles = [artifactsDir @@ "DotCover.xml" ]
         })
NDependDefaults
Signature: NDependParams