skip to Main Content

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

2

Answers


  1. 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.

    Login or Signup to reply.
  2. If you mean the publish build artifact step and you see any warning like this:

    ##[warning]Directory 'D:a1a' 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

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search