DependencyCheckAliases.

DependencyCheck(ICakeContext, string, string) Method

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

Type Description
void