Use the VSTS Package Management Extension behind a Proxy

Developing behind a proxy always has its challenges. I’ve already blogged about using git for windows behind a proxy. But the TFS server itself normally does not have to connect to the internet. This changes if you want to use the Package Management extension with NPM and upstream to public sources. If you are using TFS 2017 with Update 2, the simplest way to configure your TFS server to use the corporate proxy is to configure a proxy server in “Internet Properties” in IE on the server that TFS is running on.  TFS will respect the settings because it follows … Continue reading Use the VSTS Package Management Extension behind a Proxy

Fix Release Management Error ‘Found value ‘aBcD’ with no corresponding key’

How to fix the error: ‘The running command stopped because the preference variable “ErrorActionPreference” or common parameter is set to Stop: Found value ‘aBcD’ with no corresponding key’ in Relese Management Continue reading Fix Release Management Error ‘Found value ‘aBcD’ with no corresponding key’

Where is my git ignore file in Visual Studio?

If you work a lot with github, then you are used to add a .gitignore file when you initialize your repository. If you create a project in TFS or Visual Studio Team Services this is not the case. You have to add your .gitignore file using the team project settings. Under settings navigate to repository settings. Look for the “Ignore File” and click “add”. Edit the file if you need to do any modifications. Now commit the .ignorefile and push your changes to the server. The git integration in Visual Studio and TFS is pretty good – but a lot … Continue reading Where is my git ignore file in Visual Studio?