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, DependencyCheckSettings settings)
Examples
Task("Dependency-Check")
.Does(() => {
DependencyCheck(new DependencyCheckSettings
{
Project = "ExampleProjectName",
Scan = "source/directory/*",
Format = "HTML"
});
});
Attributes
Type |
Description |
CakeMethodAliasAttribute |
|
Parameters
Return Value