FAKE - F# Make


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
Fork me on GitHub