-
Notifications
You must be signed in to change notification settings - Fork 64
NDepend
Henrik edited this page Aug 21, 2014
·
1 revision
Run static code analysis using NDepend's console application, NDepend.Console.exe.
desc "Perform static analysis"
ndepend :analyze do |cmd|
cmd.command = "path/to/ndependconsole"
cmd.project_file = "path/to/ndepend/proj"
cmd.parameters = ["/silent"]
end
The location of the NDepend console application.
command = "path/to/ndependconsole"
The location of the NDepend project file. NDepend requires the full filepath, but we'll take care of that for you.
project_file = "path/to/ndepend/proj"
(none)
(none)