Home > Net >  Building Project in Azure devops(CI) doesnt build all projects
Building Project in Azure devops(CI) doesnt build all projects

Time:12-23

Building Projects in Azure DevOps (CI) doesn't build all projects.

I tried to build the Solution but all projects are not build.

Path to project(s) in CI pipelines: **/*.csproj

am not getting any errors message but all projects are not published.

CI pipelines Output CI pipelines path details

Publish Task screenshot Build Tas Screenshot Publish Artifact Task screenshot

CodePudding user response:

Is it a build or publish issue ?

In the logs of the build step, are all projects build ?

In the publish step, did you select "Publish web projects" ?

enter image description here

If you want to publish other projects (in other artifacts), you may need to add other publish steps.

CodePudding user response:

If you mean the publish build artifact step and you see any warning like this:

##[warning]Directory 'D:\a\1\a' is empty. Nothing will be added to build artifact 'drop'.

You are publishing the default directory: $(Build.ArtifactStagingDirectory) while your project is not in this directory. You can check it in your publish build artifact task.

enter image description here

If it is the case, you need to add a copy file task to copy the artifact files from the build output path to $(Build.ArtifactStagingDirectory).

enter image description here

  • Related