1" Vim compiler file 2" Compiler: Microsoft Visual Studio C# 3" Maintainer: Chiel ten Brinke ([email protected]) 4" Last Change: 2013 May 13 5 6if exists("current_compiler") 7 finish 8endif 9let current_compiler = "msbuild" 10let s:keepcpo= &cpo 11set cpo&vim 12 13if exists(":CompilerSet") != 2 " older Vim always used :setlocal 14 command -nargs=* CompilerSet setlocal <args> 15endif 16 17CompilerSet errorformat=\ %#%f(%l\\\,%c):\ %m 18CompilerSet makeprg=msbuild\ /nologo\ /v:q\ /property:GenerateFullPaths=true 19 20let &cpo = s:keepcpo 21unlet s:keepcpo 22