blob: 123dff854fab7f1c160ce456bfd9ffc29aa3a840 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001" Vim compiler file
Bram Moolenaar54775062019-07-31 21:07:14 +02002" Compiler: Microsoft Visual Studio C#
3" Maintainer: Yichao Zhou (broken.zhou@gmail.com)
4" Previous Maintainer: Joseph H. Yao (hyao@sina.com)
5" Last Change: Jul 22, 2019
Doug Kearns408281e2024-04-04 22:00:58 +02006" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007
8if exists("current_compiler")
9 finish
10endif
11let current_compiler = "cs"
Bram Moolenaar9a7224b2012-04-30 15:56:52 +020012let s:keepcpo= &cpo
13set cpo&vim
Bram Moolenaar071d4272004-06-13 20:20:40 +000014
Bram Moolenaar071d4272004-06-13 20:20:40 +000015CompilerSet errorformat&
Bram Moolenaar8e5af3e2011-04-28 19:02:44 +020016CompilerSet errorformat+=%f(%l\\,%v):\ %t%*[^:]:\ %m,
17 \%trror%*[^:]:\ %m,
18 \%tarning%*[^:]:\ %m
Bram Moolenaar071d4272004-06-13 20:20:40 +000019
Bram Moolenaar54775062019-07-31 21:07:14 +020020CompilerSet makeprg=csc\ %:S
Bram Moolenaar9a7224b2012-04-30 15:56:52 +020021
22let &cpo = s:keepcpo
23unlet s:keepcpo