[svn] r6006: nemerle/trunk/tools/msbuild-task: MSBuildTask.n
Makefile
nazgul
svnadmin at nemerle.org
Wed Dec 14 18:11:52 CET 2005
Log:
Do not override method missing on mono when compiling for mono
Author: nazgul
Date: Wed Dec 14 18:11:51 2005
New Revision: 6006
Modified:
nemerle/trunk/tools/msbuild-task/MSBuildTask.n
nemerle/trunk/tools/msbuild-task/Makefile
Modified: nemerle/trunk/tools/msbuild-task/MSBuildTask.n
==============================================================================
--- nemerle/trunk/tools/msbuild-task/MSBuildTask.n (original)
+++ nemerle/trunk/tools/msbuild-task/MSBuildTask.n Wed Dec 14 18:11:51 2005
@@ -85,7 +85,7 @@
}
}
-
+#if !RUNTIME_MONO
protected override LogEventsFromTextOutput(singleLine : string, messageImportance : MessageImportance) : void
{
def get_location (before) {
@@ -116,7 +116,7 @@
}
else _ = Log.LogMessageFromText(singleLine, messageImportance);
}
-
+#endif
protected override GetResponseFileSwitch(responseFilePath : string) : string
{
"/from-file:\"" + responseFilePath + "\"";
Modified: nemerle/trunk/tools/msbuild-task/Makefile
==============================================================================
--- nemerle/trunk/tools/msbuild-task/Makefile (original)
+++ nemerle/trunk/tools/msbuild-task/Makefile Wed Dec 14 18:11:51 2005
@@ -65,7 +65,7 @@
endif
Nemerle.MSBuild.Tasks.dll: MSBuildTask.n
- $(EXECUTE) $(TOP)/ncc/out.stage3/ncc.exe -q -r:Microsoft.Build.Tasks.dll -out $@ -t:library MSBuildTask.n
+ $(EXECUTE) $(TOP)/ncc/out.stage3/ncc.exe $(NEM_FLAGS) -q -r:Microsoft.Build.Tasks.dll -out $@ -t:library MSBuildTask.n
uninstall:
rm -f $(DESTDIR)$(BINDIR)/Nemerle.MSBuild.Tasks.dll
More information about the svn
mailing list