Update to VSTS Build Extension for Visual Studio Code

An extension that I otherwise thought to be obsolete as a result of an official VSTS extension for Visual Studio Code having been released, has received an update! The number of downloads keep increasing, and it appears it brings some value in addition to the official extension. will be spending some time over the next weeks bringing a couple of new features to it and trying to get feature requests implemented as well. ...

October 2, 2016 · Jeppe Lund Andersen

Debugging Python 3.x with Visual Studio Code on OSX

OSX comes with Python 2.x by default, and setting the default Python version to 3.x is not without trouble. Here is how you debug Python 3.x applications with Visual Studio Code and the Python extension. Open the application folder in VS Code Create a new launch configuration based on the Python template Add "pythonPath": "/Library/Frameworks/Python.framework/Versions/3.5/bin/python3" to the configuration so that it looks similar to the following: { "name": "Python", "type": "python", "request": "launch", "pythonPath": "/Library/Frameworks/Python.framework/Versions/3.5/bin/python3", "stopOnEntry": true, "program": "${file}", "debugOptions": [ "WaitOnAbnormalExit", "WaitOnNormalExit", "RedirectOutput" ] } And start debugging!

May 7, 2016 · Jeppe Lund Andersen

Office 365 Saturday 2016 Slides

This saturday I had the opportunity to give a talk at Office 365 Saturday Denmark 2016, on Continuous Deployment with Visual Studio Team Services and Azure. Even though it was a last minute session I put together as a result of another speaker having cancelled due to illness I think it turned out great. Lot’s of good questions and interest! By request, the slides are available for download. Feel free to reach out if you have any questions!

March 14, 2016 · Jeppe Lund Andersen

Watch your Visual Studio Team Services Builds in Visual Studio Code!

I am starting to find myself spend more and more time in Visual Studio Code. Instead of going to VSTS project sites to view status of my builds, I decided to put it directly into VS Code as an extension. The extension puts a status icon in the status bar which shows the status of a selected build definition. You can find the “Visual Studio Team Services Build Status” extension directly in VS Code or the market place https://github.com/jlandersen/vscode-vsts-build-status which also shows how to configure the extension with your VSTS account. ...

January 6, 2016 · Jeppe Lund Andersen