You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by bo...@apache.org on 2016/11/29 19:43:25 UTC

svn commit: r1771947 - in /logging/log4net/trunk/src/Util: LogicalThreadContextStack.cs LogicalThreadContextStacks.cs

Author: bodewig
Date: Tue Nov 29 19:43:25 2016
New Revision: 1771947

URL: http://svn.apache.org/viewvc?rev=1771947&view=rev
Log:
LOG4NET-536 NETCF cannot compile LogicalThreadContextStacks

Modified:
    logging/log4net/trunk/src/Util/LogicalThreadContextStack.cs
    logging/log4net/trunk/src/Util/LogicalThreadContextStacks.cs

Modified: logging/log4net/trunk/src/Util/LogicalThreadContextStack.cs
URL: http://svn.apache.org/viewvc/logging/log4net/trunk/src/Util/LogicalThreadContextStack.cs?rev=1771947&r1=1771946&r2=1771947&view=diff
==============================================================================
--- logging/log4net/trunk/src/Util/LogicalThreadContextStack.cs (original)
+++ logging/log4net/trunk/src/Util/LogicalThreadContextStack.cs Tue Nov 29 19:43:25 2016
@@ -17,6 +17,7 @@
 //
 #endregion
 
+#if !NETCF
 using System;
 using System.Collections;
 
@@ -425,3 +426,4 @@ namespace log4net.Util
 
 	}
 }
+#endif
\ No newline at end of file

Modified: logging/log4net/trunk/src/Util/LogicalThreadContextStacks.cs
URL: http://svn.apache.org/viewvc/logging/log4net/trunk/src/Util/LogicalThreadContextStacks.cs?rev=1771947&r1=1771946&r2=1771947&view=diff
==============================================================================
--- logging/log4net/trunk/src/Util/LogicalThreadContextStacks.cs (original)
+++ logging/log4net/trunk/src/Util/LogicalThreadContextStacks.cs Tue Nov 29 19:43:25 2016
@@ -17,6 +17,7 @@
 //
 #endregion
 
+#if !NETCF
 using System;
 using System.Collections;
 
@@ -139,3 +140,4 @@ namespace log4net.Util
 	}
 }
 
+#endif