add NEWTIMERS and NEWPARENT preprocessor directives to assist third party developers

This commit is contained in:
Mark Sturgill 2014-03-09 17:07:26 -07:00
parent 54aef01c72
commit 5003f7c4a9

View file

@ -96,6 +96,9 @@ namespace Server
AppendCompilerOption( ref sb, "/d:Framework_2_0" );
AppendCompilerOption( ref sb, "/d:Framework_4_0" );
AppendCompilerOption(ref sb, "/d:NEWTIMERS");
AppendCompilerOption(ref sb, "/d:NEWPARENT");
return (sb == null ? null : sb.ToString());
}