This content is part of a third party extension that is not supported by the Cake project.
For more information about this extension see
Cake.DependencyCheck.
Summary
Run the actual OWASP Dependency Check analysis.
Syntax
public static void DependencyCheck(this ICakeContext context, string project, string scan)
Examples
Task("Dependency-Check")
.Does(() => {
DependencyCheck(project: "ExampleProjectName", scan: "source/directory/*");
});
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Name |
Type |
Description |
context |
ICakeContext |
|
project |
string |
A required project name. |
scan |
string |
A required scan path. |
Return Value