I am working on Azure DevOps build pipeline. I have a Server.sln which has student 2 C# projects like Error.csproj
and Log.csproj
.
My folder structure is like below
Code (folder)
Error (folder)
Error.csproj
Log (folder)
Log.csproj
Server.sln
Staging (folder)
Error (folder)
Log (folder)
I have Azure Pipeline which has a build task in debug mode which produces Error.dll in Error\bin\debug folder
and Log.dll into Log\bin\debug folder
.
After that I want to copy Error.dll from Error\bin\debug into Staging\Error
and Log.dll from Log\bin\debug folder into Staging\Log
.
For this I am using 2 Copy file tasks.
One to copy Error.dll and other to do copy Log.dll.
Is it possible to combine this 2 copy tasks into one ?
Thanks in advance.