I want to use Vim\'s quickfix features with the output from Visual Studio\'s devenv build process or msbuild.
I\'ve created a batch file called build.bat which executes
As Simon Buchan mentioned you can use this in your project to generate the full paths in the output:
True
But you can make it more portable by adding /property:GenerateFullPaths=true
to you makeprg
instead of adding the above to your project files.
:set makeprg=msbuild\ /nologo\ /v:q\ /property:GenerateFullPaths=true\