2
votes

I have .Net Solution project it has multiple projects few of them are console application. I want to execute one of the console application during my release pipeline as task under empty process.

How can I refer the .exe from my build artifact?

1

1 Answers

10
votes

Add "Command Line" task during the release pipeline, in the "Tool" field specify the .exe of the console application from your artifact location, for example: "$(Agent.ReleaseDirectory)\Tools\ConsoleApp.exe".

enter image description here