This is how the task step looks. I am not able to get the output files into the $(Build.ArtifactStagingDirectory) directory.
- task: VSBuild@1
inputs:
solution: '$(solution)'
platform: '$(buildPlatform)'
configuration: '$(buildConfiguration)'
msbuildArguments: '/p:OutDir="$(Build.ArtifactStagingDirectory)"'
I'm wondering if the msbuildArguments parameter is in the right format.