├── .eslintignore ├── .eslintrc.js ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── README.md ├── Tasks ├── DependencyCheck │ ├── Tests │ │ ├── L0.ts │ │ └── L0BasicExecution.ts │ ├── dependency-check-build-task.ts │ ├── dependency-check │ │ └── data │ │ │ └── README.md │ ├── icon.png │ ├── package-lock.json │ ├── package.json │ ├── task.json │ └── tsconfig.json └── tsconfig.json ├── azure-pipelines.yml ├── css └── main.css ├── definitions ├── dependency-check.d.ts └── mocha.d.ts ├── images ├── logo-128x128.png ├── logo-dev-128x128.png └── logo-hotfix-128x128.png ├── license.md ├── overview.md ├── package.json ├── screenshots ├── build-artifacts-explorer.png ├── build-artifacts.png ├── build-output.png ├── build-success.png ├── build-tests.png ├── buildtask-add.png ├── buildtask-configure.png ├── buildtask-new.png ├── buildtask-tests.png └── report.png └── vss-extension.json /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/README.md -------------------------------------------------------------------------------- /Tasks/DependencyCheck/Tests/L0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/Tasks/DependencyCheck/Tests/L0.ts -------------------------------------------------------------------------------- /Tasks/DependencyCheck/Tests/L0BasicExecution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/Tasks/DependencyCheck/Tests/L0BasicExecution.ts -------------------------------------------------------------------------------- /Tasks/DependencyCheck/dependency-check-build-task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/Tasks/DependencyCheck/dependency-check-build-task.ts -------------------------------------------------------------------------------- /Tasks/DependencyCheck/dependency-check/data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/Tasks/DependencyCheck/dependency-check/data/README.md -------------------------------------------------------------------------------- /Tasks/DependencyCheck/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/Tasks/DependencyCheck/icon.png -------------------------------------------------------------------------------- /Tasks/DependencyCheck/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/Tasks/DependencyCheck/package-lock.json -------------------------------------------------------------------------------- /Tasks/DependencyCheck/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/Tasks/DependencyCheck/package.json -------------------------------------------------------------------------------- /Tasks/DependencyCheck/task.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/Tasks/DependencyCheck/task.json -------------------------------------------------------------------------------- /Tasks/DependencyCheck/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/Tasks/DependencyCheck/tsconfig.json -------------------------------------------------------------------------------- /Tasks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/Tasks/tsconfig.json -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/css/main.css -------------------------------------------------------------------------------- /definitions/dependency-check.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/definitions/dependency-check.d.ts -------------------------------------------------------------------------------- /definitions/mocha.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/definitions/mocha.d.ts -------------------------------------------------------------------------------- /images/logo-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/images/logo-128x128.png -------------------------------------------------------------------------------- /images/logo-dev-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/images/logo-dev-128x128.png -------------------------------------------------------------------------------- /images/logo-hotfix-128x128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/images/logo-hotfix-128x128.png -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/license.md -------------------------------------------------------------------------------- /overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/overview.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/build-artifacts-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/screenshots/build-artifacts-explorer.png -------------------------------------------------------------------------------- /screenshots/build-artifacts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/screenshots/build-artifacts.png -------------------------------------------------------------------------------- /screenshots/build-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/screenshots/build-output.png -------------------------------------------------------------------------------- /screenshots/build-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/screenshots/build-success.png -------------------------------------------------------------------------------- /screenshots/build-tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/screenshots/build-tests.png -------------------------------------------------------------------------------- /screenshots/buildtask-add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/screenshots/buildtask-add.png -------------------------------------------------------------------------------- /screenshots/buildtask-configure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/screenshots/buildtask-configure.png -------------------------------------------------------------------------------- /screenshots/buildtask-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/screenshots/buildtask-new.png -------------------------------------------------------------------------------- /screenshots/buildtask-tests.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/screenshots/buildtask-tests.png -------------------------------------------------------------------------------- /screenshots/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/screenshots/report.png -------------------------------------------------------------------------------- /vss-extension.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dependency-check/azuredevops/HEAD/vss-extension.json --------------------------------------------------------------------------------