- task: DotNetCoreCLI@2
displayName: Build X (DotNet)
inputs:
command: 'build'
projects: '$(X)'
arguments: '-c "Release" /p:Platform="x64" --output $(Build.ArtifactStagingDirectory)\X'
once I adding the output (--output $(Build.ArtifactStagingDirectory)\X') argument for be able to PublishArtifact after that the build results.
I got error from solution of missing's files in the Build Solution: error MSB3073
and if I remove the output is work good but I have no option to publishArtifact the results
to some 1 have suggestion how can I publish the results to artifact without output? or to solve the output issue