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