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
Try running msbuild instead of devenv. This will open up a ton of power in how the build runs.
Open a Visual Studio Command Prompt to get your path set up. Then do msbuild MySln.sln /Configuration:Debug.
msbuild MySln.sln /Configuration:Debug
See msbuild /? for help.
msbuild /?