Skip to content
This repository has been archived by the owner on Nov 12, 2019. It is now read-only.

Install on TFS 2015

Jesse Houwing edited this page Nov 29, 2016 · 1 revision

If you want to use these tasks on TFS 2015 RTM or update 1, you can't use the extension from the marketplace. Instead you'll need to install the tasks individually. The process is simple:

git clone https://github.com/jessehouwing/vsts-snyk-task.git

npm install tfx-cli -g
cd vsts-snyk
npm run initdev
npm run build
pushd node_modules\snyk
rename "Contributor Agreement.md" "Contributor_Agreement.md"
popd

Tfx build tasks upload --task-root . --auth-type basic --service-url https://yourserver/collection

Due to the way I develop and deploy these tasks you may need to edit the task.json and update the version number.

If your Team Foundation Server does not support basic authentication you can use this trick to bypass that requirement.

Clone this wiki locally