mburm
mburm

Reputation: 1493

Build BizTalk Project with Azure DevOps Build Pipeline

I've got a Visual Studio Solution which contains only BizTalk projects. These has the following settings.

On the server is installed.

In my Azure DevOps Build Pipeline the build fails with the following error

##[error]CSC(0,0): Error CS2001: Source file 'C:\VSTS_Agent\vsts-agent-win-x64-2.144.2\_work\1\s\MyProject\MySchema.xsd.cs' could not be found.

If I'm searching for this error there are some hits. But I couldn't find something that helps for this problem. Is something missing that have also to be installed or configured?

Upvotes: 0

Views: 460

Answers (1)

mahieddine
mahieddine

Reputation: 565

The problem you have is that you have committed *.xsd.cs files into your source code tracker. Try to remove them from your repos and build again it should work

Upvotes: 0

Related Questions