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 2011/09/16 11:47:15 UTC

svn commit: r1171479 - /logging/log4net/trunk/src/Appender/RollingFileAppender.cs

Author: bodewig
Date: Fri Sep 16 09:47:15 2011
New Revision: 1171479

URL: http://svn.apache.org/viewvc?rev=1171479&view=rev
Log:
.NET 1.0 builds CLI 1.0

Modified:
    logging/log4net/trunk/src/Appender/RollingFileAppender.cs

Modified: logging/log4net/trunk/src/Appender/RollingFileAppender.cs
URL: http://svn.apache.org/viewvc/logging/log4net/trunk/src/Appender/RollingFileAppender.cs?rev=1171479&r1=1171478&r2=1171479&view=diff
==============================================================================
--- logging/log4net/trunk/src/Appender/RollingFileAppender.cs (original)
+++ logging/log4net/trunk/src/Appender/RollingFileAppender.cs Fri Sep 16 09:47:15 2011
@@ -239,7 +239,7 @@ namespace log4net.Appender
 
 		#region Public Instance Properties
 
-#if !NET_1_0
+#if !NET_1_0 && !CLI_1_0
         /// <summary>
 		/// Gets or sets the strategy for determining the current date and time. The default
 		/// implementation is to use LocalDateTime which internally calls through to DateTime.Now. 
@@ -795,10 +795,9 @@ namespace log4net.Appender
 				if (FileExists(m_baseFileName)) 
 				{
 					DateTime last;
-					using(SecurityContext.Impersonate(this))
-					{
-#if !NET_1_0
-						if (DateTimeStrategy is UniversalDateTime)
+					using(SecurityContext.Impersonate(this)) {
+#if !NET_1_0 && !CLI_1_0
+                        if (DateTimeStrategy is UniversalDateTime)
 						{
 							last = System.IO.File.GetLastWriteTimeUtc(m_baseFileName);
 						}
@@ -806,8 +805,8 @@ namespace log4net.Appender
 						{
 #endif
 							last = System.IO.File.GetLastWriteTime(m_baseFileName);
-#if !NET_1_0
-						}
+#if !NET_1_0 && !CLI_1_0
+                        }
 #endif
                     }
 					LogLog.Debug(declaringType, "["+last.ToString(m_datePattern,System.Globalization.DateTimeFormatInfo.InvariantInfo)+"] vs. ["+m_now.ToString(m_datePattern,System.Globalization.DateTimeFormatInfo.InvariantInfo)+"]");
@@ -1697,8 +1696,8 @@ namespace log4net.Appender
 			}
 		}
 
-#if !NET_1_0
-		/// <summary>
+#if !NET_1_0 && !CLI_1_0
+        /// <summary>
 		/// Implementation of <see cref="IDateTime"/> that returns the current time as the coordinated universal time (UTC).
 		/// </summary>
 		private class UniversalDateTime : IDateTime