Home > Software engineering >  Azure DevOps: CI build for one project in the Solution [.Net Core]
Azure DevOps: CI build for one project in the Solution [.Net Core]

Time:03-02

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 enter image description here

For your case, after .Net build task, the you need to use the enter image description here

Then use the **Publish Artifacts task ** to publish the artifact files from $(Build.ArtifactStagingDirectory).

enter image description here

  • Related