I am Building C# Application using Visual Studio Build In Azure Pipeline.
My solution Contains multiple project (ManagerWeb & WebAPI).
I want to Publish Two Separate Artifact ManagerWeb & WebAPI respectively.
All the required File's are present in Build.ArtifactStagingDirectory
.
How I can specify a pattern using which I can get Two Separate Artifact ?
Example All the File name with WebAPI
in 1st Artifact & ManagerWeb
in another.
The File name from ArtifactStaging Directory are as Below
Something.Manager.WebAPI.deploy.cmd
Something.Manager.WebAPI.deploy-readme.txt
Something.Manager.WebAPI.SetParameters.xml
Something.Manager.WebAPI.SourceManifest.xml
Something.Manager.WebAPI.zip
Something.ManagerWeb.deploy.cmd
Something.ManagerWeb.deploy-readme.txt
Something.ManagerWeb.SetParameters.xml
Something.ManagerWeb.SourceManifest.xml
Something.ManagerWeb.zip
Any Help will be appreciable.
Thanks in Advance.