I have a solution in .Net core containing multiple projects.
- src/Api/[ProjName].Api
- [ProjName].FrontEnd
We are using the Azure pipelines using Azure DevOPS and we need to have a complete separate build pipelines for each of the mentioned projects. I have tried to use "Path Filters" but couldn't accomplish this. My pipeline creates a drop from the whole solution. Already reviewed
For your case, after .Net build task, the you need to use the
Then use the **Publish Artifacts task ** to publish the artifact files from $(Build.ArtifactStagingDirectory)
.