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.
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" ?
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.
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)
.