Vim errorformat for Visual Studio

后端 未结 7 1233
南方客
南方客 2021-01-30 17:18

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

7条回答
  •  一生所求
    2021-01-30 17:44

    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.

    See msbuild /? for help.

提交回复
热议问题