[svn] r6468: nemerle/trunk/tools/msbuild-task/MSBuildTask.n

nazgul svnadmin at nemerle.org
Mon Jul 24 18:46:51 CEST 2006


Log:
Allow indentation syntax switch in msbuild

Author: nazgul
Date: Mon Jul 24 18:46:26 2006
New Revision: 6468

Modified:
   nemerle/trunk/tools/msbuild-task/MSBuildTask.n

Modified: nemerle/trunk/tools/msbuild-task/MSBuildTask.n
==============================================================================
--- nemerle/trunk/tools/msbuild-task/MSBuildTask.n	(original)
+++ nemerle/trunk/tools/msbuild-task/MSBuildTask.n	Mon Jul 24 18:46:26 2006
@@ -67,6 +67,8 @@
         commandLine.AppendSwitch("/greedy-references:-");
       when (WarningLevel != 4)
         commandLine.AppendSwitchIfNotNull("/warn:", WarningLevel.ToString());
+      when (IndentationSyntax)
+        commandLine.AppendSwitch("/indentation-syntax");
       commandLine.AppendSwitchIfNotNull("/doc:", this.DocumentationFile);
       commandLine.AppendSwitchUnquotedIfNotNull("/define:", base.DefineConstants);
 
@@ -146,5 +148,8 @@
         
     [Accessor (flags = WantSetter)]
     mutable _greedy_references : bool = true;
+ 
+    [Accessor (flags = WantSetter)]
+    mutable _indentation_syntax : bool = false;
   }
 }
\ No newline at end of file



More information about the svn mailing list