msbuild.vim (477B)
1 " Vim compiler file 2 " Compiler: Microsoft Visual Studio C# 3 " Maintainer: Chiel ten Brinke (ctje92@gmail.com) 4 " Last Change: 2013 May 13 5 " 2024 Apr 03 by The Vim Project (removed :CompilerSet definition) 6 7 if exists("current_compiler") 8 finish 9 endif 10 let current_compiler = "msbuild" 11 let s:keepcpo= &cpo 12 set cpo&vim 13 14 CompilerSet errorformat=\ %#%f(%l\\\,%c):\ %m 15 CompilerSet makeprg=msbuild\ /nologo\ /v:q\ /property:GenerateFullPaths=true 16 17 let &cpo = s:keepcpo 18 unlet s:keepcpo