In response to this question about making an Azure build pipeline for a VB6 project
I have managed to create the following Build Pipeline so far
pool:
- task: CopyFiles@2
inputs:
SourceFolder: c:\dev\hello
contents: '**.exe*'
targetFolder: c:\dev\out2
where c:\dev\hello is the location of the project on the build agent
[Update]
And a nicer notation that allows for multiple file types is
- task: CopyFiles@2
inputs:
SourceFolder: c:\dev\hello
contents: |
*.exe
*.dll
targetFolder: c:\dev\out2