Microsoft recently released Visual Studio Team Services Extension for Visual Studio Code.
The process of installing is pretty straight forward:
- Search for Visual Studio Team Services in VS Code and select to install the one by Microsoft
- Open File -> Preferences -> Settings
- Add the following lines to your user settings
If you have VS 2015 installed on your machine, your path to Team Foundation tool (tf.exe) may look like this:
{
"tfvc.location": "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\tf.exe",
"tfvc.restrictWorkspace": true
}
Or for VS 2017:
{
"tfvc.location": "C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\tf.exe",
"tfvc.restrictWorkspace": true
}
From View -> Command Pallette ..., type team signin
In this step, you need to provide a personal access token.
If you already have VSTS account, go to VSTS online website. Under your name (top right corner of the screen), click Security, then click Add and then Create Token Copy and paste the generated token to VS Code
Hope it helps.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…