This repository was archived by the owner on Nov 11, 2024. It is now read-only.
File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ PKG_CONFIG ?= pkg-config
37
37
PREFIX ?= /usr/local
38
38
SED ?= sed
39
39
TAR ?= tar
40
- XBUILD ?= xbuild
40
+ MSBUILD ?= msbuild
41
41
42
42
export MONO_PREFIX ?= /usr
43
43
MODE ?= Debug
55
55
FSHARPC_FLAGS += --nologo --warnaserror
56
56
GENDARME_FLAGS += --severity all --confidence all
57
57
MCS_FLAGS += -langversion:experimental -unsafe -warnaserror
58
- XBUILD_FLAGS += /nologo /property:Configuration=$(MODE ) /verbosity:quiet
58
+ MSBUILD_FLAGS += /nologo /property:Configuration=$(MODE ) /verbosity:quiet
59
59
60
60
FSHARPC_TEST_FLAGS += --debug+ --nologo --warnaserror
61
61
MCS_TEST_FLAGS += -debug -langversion:experimental -unsafe -warnaserror
@@ -114,7 +114,7 @@ clean-check:
114
114
$(RM ) $(tests )
115
115
116
116
clean-deps :
117
- $(CD ) dep/debugger-libs && $(XBUILD ) $(XBUILD_FLAGS ) /target:Clean debugger-libs.sln
117
+ $(CD ) dep/debugger-libs && $(MSBUILD ) $(MSBUILD_FLAGS ) /target:Clean debugger-libs.sln
118
118
119
119
clean-release :
120
120
$(RM ) -r rel
@@ -175,7 +175,7 @@ override deps = \
175
175
$(refs )
176
176
177
177
$(addprefix bin/, $(deps ) ) :
178
- $(CD ) dep/debugger-libs && $(NUGET ) restore debugger-libs.sln && $(XBUILD ) $(XBUILD_FLAGS ) debugger-libs.sln
178
+ $(CD ) dep/debugger-libs && $(NUGET ) restore debugger-libs.sln && $(MSBUILD ) $(MSBUILD_FLAGS ) debugger-libs.sln
179
179
$(MKDIR ) -p bin
180
180
$(CP ) dep/nrefactory/bin/Debug/ICSharpCode.NRefactory.dll \
181
181
bin/ICSharpCode.NRefactory.dll
Original file line number Diff line number Diff line change @@ -64,8 +64,8 @@ line to affect the build:
64
64
* ` RM ` : Path to the ` rm ` POSIX utility.
65
65
* ` SED ` : Path to the ` sed ` POSIX utility.
66
66
* ` TAR ` : Path to the ` tar ` POSIX utility.
67
- * ` XBUILD ` : Which XBuild executable to use.
68
- * ` XBUILD_FLAGS ` : Flags to pass to XBuild .
67
+ * ` MSBUILD ` : Which MSBuild executable to use.
68
+ * ` MSBUILD_FLAGS ` : Flags to pass to MSBuild .
69
69
70
70
Additionally, ` MODE ` can be set to ` Debug ` (default) or ` Release ` to indicate
71
71
the kind of build desired. ` PREFIX ` can be set to specify the path that the
You can’t perform that action at this time.
0 commit comments