Home > Software design >  Docker image for build BizTalk projects in GitLab
Docker image for build BizTalk projects in GitLab

Time:07-01

We need a Docker image to build BizTalk projects.

We use as base image mcr.microsoft.com/dotnet/framework/sdk:4.8-windowsservercore-ltsc2019, but we can't add the features to build BizTalk projects because internally this image is using Visual Studio 2022.

Do you know how to add BizTalk features to this?

CodePudding user response:

Each version of BizTalk has a particular version of BizTalk and it needs to be either Enterprise or Professional.

So first you need to have the correct version of Visual Studio, and then you have to run the BizTalk developer setup and at least install the SDK. For 2020 you also need to install the Developer Tools from the marketplace

  • Related