Skip to content

burakince/Cake.DependencyCheck

Repository files navigation

Cake.DependencyCheck

OWASP DependencyCheck Cake Package. You need to use DependencyCheck Runner Tool.

Build status NuGet version NuGet downloads Join the chat at https://gitter.im/Cake-DependencyCheck/Lobby

Example usage;

#tool "nuget:?package=DependencyCheck.Runner.Tool&include=./**/dependency-check.sh&include=./**/dependency-check.bat"
#addin "nuget:?package=Cake.DependencyCheck"

Task("Dependency-Check")
    .Does(() =>
    {
        DependencyCheck(new DependencyCheckSettings
        {
            Project = "CustomerService",
            Scan = "source/directory/*",
            Format = "HTML"
        });
    });

Contributing

We'd love to get contributions from you! If you would like to contribute code or help squash a bug or two, that's awesome. Please familiarize yourself with Contribution Document.

License

See LICENSE file.

Code of Conduct

See Code of Conduct file.