PDA

View Full Version : VSTS / Azure DevOps


QSS
09-26-2018, 10:58 AM
Is there support for using VSTS/Azure DevOps that is fully web based? Meaning having all our source code online in the cloud, but checking out and building legacy VB 6 code in our legacy pipeline?

I see TFS, but it references a computer, etc. With VSTS/ADO we use URLs.

Thanks!

kinook
09-27-2018, 05:29 AM
One way would be to setup a self-hosted build agent, install Visual Build and VB6 on it, and integrate into your Azure pipeline.

https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/agents?view=vsts

https://docs.microsoft.com/en-us/azure/devops/pipelines/agents/v2-windows?view=vsts

QSS
10-18-2018, 09:21 AM
I guess I could have been a little more explicit...

We have been using SourceGear Vault for *years* and are moving to Azure DevOps (formerly VSTS). We have a rather intense VisualBuild based pipeline still building VB6 apps, etc.

I unconfused myself by creating Git repos in VSTS instead of Team Foundation style. After choosing to do that it was easier as instead of looking at the TFS commands and wondering how to hit VSTS/ADO with them I just did everything with basic git commands.

So far, so good!

Thanks!