http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/examples/net/2.0/Tutorials/WebApp/cs/src/WebForm1.aspx.cs
----------------------------------------------------------------------
diff --git a/examples/net/2.0/Tutorials/WebApp/cs/src/WebForm1.aspx.cs 
b/examples/net/2.0/Tutorials/WebApp/cs/src/WebForm1.aspx.cs
index a4908f3..345cb8c 100644
--- a/examples/net/2.0/Tutorials/WebApp/cs/src/WebForm1.aspx.cs
+++ b/examples/net/2.0/Tutorials/WebApp/cs/src/WebForm1.aspx.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -56,7 +56,7 @@ namespace WebApp
 
                protected SimpleModule.Math m_MathAdd = new SimpleModule.Math();
                protected SharedModule.Math m_MathSub = new SharedModule.Math();
-       
+
                private void Page_Load(object sender, System.EventArgs e)
                {
                        // Put user code to initialize the page here
@@ -81,13 +81,13 @@ namespace WebApp
                        txtSub2.Text = "0";
                        txtSub3.Text = "0";
                }
-               
+
                /// <summary>
                /// Required method for Designer support - do not modify
                /// the contents of this method with the code editor.
                /// </summary>
                private void InitializeComponent()
-               {    
+               {
                        this.btnCalcAdd.Click += new 
System.EventHandler(this.btnCalcAdd_Click);
                        this.btnCalcSub.Click += new 
System.EventHandler(this.btnCalcSub_Click);
                        this.Load += new System.EventHandler(this.Page_Load);
@@ -101,7 +101,7 @@ namespace WebApp
                        int result = m_MathAdd.Add(int.Parse(txtAdd1.Text), 
int.Parse(txtAdd2.Text));
 
                        if (log.IsInfoEnabled) log.Info("result=[" + result + 
"]");
-                       
+
                        txtAdd3.Text = result.ToString();
                }
 
@@ -112,7 +112,7 @@ namespace WebApp
                        int result = 
m_MathSub.Subtract(int.Parse(txtSub1.Text), int.Parse(txtSub2.Text));
 
                        if (log.IsInfoEnabled) log.Info("result=[" + result + 
"]");
-                       
+
                        txtSub3.Text = result.ToString();
                }
        }

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/AssemblyInfo.cs 
b/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/AssemblyInfo.cs
index 5d78024..283e151 100644
--- a/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/AssemblyInfo.cs
+++ b/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/AssemblyInfo.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -21,7 +21,7 @@ using System.Reflection;
 using System.Runtime.CompilerServices;
 
 //
-// General Information about an assembly is controlled through the following 
+// General Information about an assembly is controlled through the following
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.
 //
@@ -29,29 +29,29 @@ using System.Runtime.CompilerServices;
 [assembly: AssemblyDescription("log4net ConsoleApp")]
 [assembly: AssemblyConfiguration("")]
 [assembly: AssemblyProduct("log4net - TestApp")]
-[assembly: AssemblyCulture("")]                
+[assembly: AssemblyCulture("")]
 
 //
-// In order to sign your assembly you must specify a key to use. Refer to the 
+// In order to sign your assembly you must specify a key to use. Refer to the
 // Microsoft .NET Framework documentation for more information on assembly 
signing.
 //
-// Use the attributes below to control which key is used for signing. 
+// Use the attributes below to control which key is used for signing.
 //
-// Notes: 
+// Notes:
 //   (*) If no key is specified, the assembly is not signed.
 //   (*) KeyName refers to a key that has been installed in the Crypto Service
 //       Provider (CSP) on your machine. KeyFile refers to a file which 
contains
 //       a key.
-//   (*) If the KeyFile and the KeyName values are both specified, the 
+//   (*) If the KeyFile and the KeyName values are both specified, the
 //       following processing occurs:
 //       (1) If the KeyName can be found in the CSP, that key is used.
-//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
+//       (2) If the KeyName does not exist and the KeyFile does exist, the key
 //           in the KeyFile is installed into the CSP and used.
 //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) 
utility.
 //       When specifying the KeyFile, the location of the KeyFile should be
 //       relative to the project output directory which is
 //       %Project Directory%\obj\<configuration>. For example, if your KeyFile 
is
-//       located in the project directory, you would specify the 
AssemblyKeyFile 
+//       located in the project directory, you would specify the 
AssemblyKeyFile
 //       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
 //       documentation for more information on this.

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/EntryPoint.cs
----------------------------------------------------------------------
diff --git a/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/EntryPoint.cs 
b/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/EntryPoint.cs
index d4d8b20..ce4dfb8 100644
--- a/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/EntryPoint.cs
+++ b/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/EntryPoint.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -34,7 +34,7 @@ namespace ConsoleApp
        /// </para>
        /// <para>
        /// The .NET Compact Framework does not support hooking up the 
<c>AppDomain.ProcessExit</c>
-       /// and <c>AppDomain.DomainUnload</c> events, so log4net must be 
shutdown manually to 
+       /// and <c>AppDomain.DomainUnload</c> events, so log4net must be 
shutdown manually to
        /// free all resources.
        /// </para>
        /// </remarks>
@@ -43,7 +43,7 @@ namespace ConsoleApp
                /// <summary>
                /// Application entry point.
                /// </summary>
-               public static void Main() 
+               public static void Main()
                {
                        // Uncomment the next line to enable log4net internal 
debugging
                        // log4net.helpers.LogLog.InternalDebugging = true;
@@ -60,7 +60,7 @@ namespace ConsoleApp
                        if (log.IsInfoEnabled) log.Info("Application 
[ConsoleApp] Start");
 
                        // Invoke static LogEvents method on LoggingExample 
class
-                       LoggingExample.LogEvents(); 
+                       LoggingExample.LogEvents();
 
                        Console.Write("Press Enter to exit...");
                        Console.ReadLine();

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/LoggingExample.cs
----------------------------------------------------------------------
diff --git a/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/LoggingExample.cs 
b/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/LoggingExample.cs
index 16acb08..abb2a71 100644
--- a/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/LoggingExample.cs
+++ b/examples/netcf/1.0/Tutorials/ConsoleApp/cs/src/LoggingExample.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -22,7 +22,7 @@ namespace ConsoleApp
        using System;
 
        /// <summary>
-       /// Illustrates using log4net to conditionally log events, and 
+       /// Illustrates using log4net to conditionally log events, and
        /// using log4net to log exceptions, ...
        /// </summary>
        public class LoggingExample
@@ -57,7 +57,7 @@ namespace ConsoleApp
                        {
                                log.Warn("This should have an NDC message");
 
-                               // Set a Mapped Diagnostic Context value  
+                               // Set a Mapped Diagnostic Context value
                                log4net.MDC.Set("auth", "auth-none");
                                log.Warn("This should have an MDC message for 
the key 'auth'");
 

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/examples/sscli/1.0/Repository/SharedModule/cs/src/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/examples/sscli/1.0/Repository/SharedModule/cs/src/AssemblyInfo.cs 
b/examples/sscli/1.0/Repository/SharedModule/cs/src/AssemblyInfo.cs
index 9c40818..0b9f84a 100644
--- a/examples/sscli/1.0/Repository/SharedModule/cs/src/AssemblyInfo.cs
+++ b/examples/sscli/1.0/Repository/SharedModule/cs/src/AssemblyInfo.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -21,7 +21,7 @@ using System.Reflection;
 using System.Runtime.CompilerServices;
 
 //
-// General Information about an assembly is controlled through the following 
+// General Information about an assembly is controlled through the following
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.
 //
@@ -29,29 +29,29 @@ using System.Runtime.CompilerServices;
 [assembly: AssemblyDescription("log4net SharedModule")]
 [assembly: AssemblyConfiguration("")]
 [assembly: AssemblyProduct("log4net - SharedModule")]
-[assembly: AssemblyCulture("")]                
+[assembly: AssemblyCulture("")]
 
 //
-// In order to sign your assembly you must specify a key to use. Refer to the 
+// In order to sign your assembly you must specify a key to use. Refer to the
 // Microsoft .NET Framework documentation for more information on assembly 
signing.
 //
-// Use the attributes below to control which key is used for signing. 
+// Use the attributes below to control which key is used for signing.
 //
-// Notes: 
+// Notes:
 //   (*) If no key is specified, the assembly is not signed.
 //   (*) KeyName refers to a key that has been installed in the Crypto Service
 //       Provider (CSP) on your machine. KeyFile refers to a file which 
contains
 //       a key.
-//   (*) If the KeyFile and the KeyName values are both specified, the 
+//   (*) If the KeyFile and the KeyName values are both specified, the
 //       following processing occurs:
 //       (1) If the KeyName can be found in the CSP, that key is used.
-//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
+//       (2) If the KeyName does not exist and the KeyFile does exist, the key
 //           in the KeyFile is installed into the CSP and used.
 //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) 
utility.
 //       When specifying the KeyFile, the location of the KeyFile should be
 //       relative to the project output directory which is
 //       %Project Directory%\obj\<configuration>. For example, if your KeyFile 
is
-//       located in the project directory, you would specify the 
AssemblyKeyFile 
+//       located in the project directory, you would specify the 
AssemblyKeyFile
 //       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
 //       documentation for more information on this.

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/examples/sscli/1.0/Repository/SharedModule/cs/src/Math.cs
----------------------------------------------------------------------
diff --git a/examples/sscli/1.0/Repository/SharedModule/cs/src/Math.cs 
b/examples/sscli/1.0/Repository/SharedModule/cs/src/Math.cs
index 64211dc..e18d269 100644
--- a/examples/sscli/1.0/Repository/SharedModule/cs/src/Math.cs
+++ b/examples/sscli/1.0/Repository/SharedModule/cs/src/Math.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/examples/sscli/1.0/Repository/SimpleApp/cs/src/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/examples/sscli/1.0/Repository/SimpleApp/cs/src/AssemblyInfo.cs 
b/examples/sscli/1.0/Repository/SimpleApp/cs/src/AssemblyInfo.cs
index 6dbb861..9f6aec3 100644
--- a/examples/sscli/1.0/Repository/SimpleApp/cs/src/AssemblyInfo.cs
+++ b/examples/sscli/1.0/Repository/SimpleApp/cs/src/AssemblyInfo.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -21,7 +21,7 @@ using System.Reflection;
 using System.Runtime.CompilerServices;
 
 //
-// General Information about an assembly is controlled through the following 
+// General Information about an assembly is controlled through the following
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.
 //
@@ -29,29 +29,29 @@ using System.Runtime.CompilerServices;
 [assembly: AssemblyDescription("log4net SimpleApp")]
 [assembly: AssemblyConfiguration("")]
 [assembly: AssemblyProduct("log4net - SimpleApp")]
-[assembly: AssemblyCulture("")]                
+[assembly: AssemblyCulture("")]
 
 //
-// In order to sign your assembly you must specify a key to use. Refer to the 
+// In order to sign your assembly you must specify a key to use. Refer to the
 // Microsoft .NET Framework documentation for more information on assembly 
signing.
 //
-// Use the attributes below to control which key is used for signing. 
+// Use the attributes below to control which key is used for signing.
 //
-// Notes: 
+// Notes:
 //   (*) If no key is specified, the assembly is not signed.
 //   (*) KeyName refers to a key that has been installed in the Crypto Service
 //       Provider (CSP) on your machine. KeyFile refers to a file which 
contains
 //       a key.
-//   (*) If the KeyFile and the KeyName values are both specified, the 
+//   (*) If the KeyFile and the KeyName values are both specified, the
 //       following processing occurs:
 //       (1) If the KeyName can be found in the CSP, that key is used.
-//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
+//       (2) If the KeyName does not exist and the KeyFile does exist, the key
 //           in the KeyFile is installed into the CSP and used.
 //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) 
utility.
 //       When specifying the KeyFile, the location of the KeyFile should be
 //       relative to the project output directory which is
 //       %Project Directory%\obj\<configuration>. For example, if your KeyFile 
is
-//       located in the project directory, you would specify the 
AssemblyKeyFile 
+//       located in the project directory, you would specify the 
AssemblyKeyFile
 //       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
 //       documentation for more information on this.

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/examples/sscli/1.0/Repository/SimpleApp/cs/src/EntryPoint.cs
----------------------------------------------------------------------
diff --git a/examples/sscli/1.0/Repository/SimpleApp/cs/src/EntryPoint.cs 
b/examples/sscli/1.0/Repository/SimpleApp/cs/src/EntryPoint.cs
index a0b5acf..cdc1224 100644
--- a/examples/sscli/1.0/Repository/SimpleApp/cs/src/EntryPoint.cs
+++ b/examples/sscli/1.0/Repository/SimpleApp/cs/src/EntryPoint.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -20,8 +20,8 @@
 // Configure logging for this assembly using the 'SimpleApp.exe.log4net' file
 [assembly: log4net.Config.XmlConfigurator(ConfigFileExtension="log4net")]
 
-// The following alias attribute can be used to capture the logging 
-// repository for the 'SimpleModule' assembly. Without specifying this 
+// The following alias attribute can be used to capture the logging
+// repository for the 'SimpleModule' assembly. Without specifying this
 // attribute the logging configuration for the 'SimpleModule' assembly
 // will be read from the 'SimpleModule.dll.log4net' file. When this
 // attribute is specified the configuration will be shared with this

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/examples/sscli/1.0/Repository/SimpleModule/cs/src/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/examples/sscli/1.0/Repository/SimpleModule/cs/src/AssemblyInfo.cs 
b/examples/sscli/1.0/Repository/SimpleModule/cs/src/AssemblyInfo.cs
index 62cdc65..ce7dc02 100644
--- a/examples/sscli/1.0/Repository/SimpleModule/cs/src/AssemblyInfo.cs
+++ b/examples/sscli/1.0/Repository/SimpleModule/cs/src/AssemblyInfo.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -21,7 +21,7 @@ using System.Reflection;
 using System.Runtime.CompilerServices;
 
 //
-// General Information about an assembly is controlled through the following 
+// General Information about an assembly is controlled through the following
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.
 //
@@ -29,29 +29,29 @@ using System.Runtime.CompilerServices;
 [assembly: AssemblyDescription("log4net SimpleModule")]
 [assembly: AssemblyConfiguration("")]
 [assembly: AssemblyProduct("log4net - SimpleModule")]
-[assembly: AssemblyCulture("")]                
+[assembly: AssemblyCulture("")]
 
 //
-// In order to sign your assembly you must specify a key to use. Refer to the 
+// In order to sign your assembly you must specify a key to use. Refer to the
 // Microsoft .NET Framework documentation for more information on assembly 
signing.
 //
-// Use the attributes below to control which key is used for signing. 
+// Use the attributes below to control which key is used for signing.
 //
-// Notes: 
+// Notes:
 //   (*) If no key is specified, the assembly is not signed.
 //   (*) KeyName refers to a key that has been installed in the Crypto Service
 //       Provider (CSP) on your machine. KeyFile refers to a file which 
contains
 //       a key.
-//   (*) If the KeyFile and the KeyName values are both specified, the 
+//   (*) If the KeyFile and the KeyName values are both specified, the
 //       following processing occurs:
 //       (1) If the KeyName can be found in the CSP, that key is used.
-//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
+//       (2) If the KeyName does not exist and the KeyFile does exist, the key
 //           in the KeyFile is installed into the CSP and used.
 //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) 
utility.
 //       When specifying the KeyFile, the location of the KeyFile should be
 //       relative to the project output directory which is
 //       %Project Directory%\obj\<configuration>. For example, if your KeyFile 
is
-//       located in the project directory, you would specify the 
AssemblyKeyFile 
+//       located in the project directory, you would specify the 
AssemblyKeyFile
 //       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
 //       documentation for more information on this.

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/examples/sscli/1.0/Repository/SimpleModule/cs/src/Math.cs
----------------------------------------------------------------------
diff --git a/examples/sscli/1.0/Repository/SimpleModule/cs/src/Math.cs 
b/examples/sscli/1.0/Repository/SimpleModule/cs/src/Math.cs
index c199bc6..613a5d7 100644
--- a/examples/sscli/1.0/Repository/SimpleModule/cs/src/Math.cs
+++ b/examples/sscli/1.0/Repository/SimpleModule/cs/src/Math.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -17,7 +17,7 @@
 //
 #endregion
 
-// We want this assembly to have a seperate logging repository to the 
+// We want this assembly to have a seperate logging repository to the
 // rest of the application. We will configure this repository seperatly.
 [assembly: log4net.Config.Repository("SimpleModule")]
 

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.EventID/cs/src/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/extensions/net/1.0/log4net.Ext.EventID/cs/src/AssemblyInfo.cs 
b/extensions/net/1.0/log4net.Ext.EventID/cs/src/AssemblyInfo.cs
index 952a350..a76c65e 100644
--- a/extensions/net/1.0/log4net.Ext.EventID/cs/src/AssemblyInfo.cs
+++ b/extensions/net/1.0/log4net.Ext.EventID/cs/src/AssemblyInfo.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -21,7 +21,7 @@ using System.Reflection;
 using System.Runtime.CompilerServices;
 
 //
-// General Information about an assembly is controlled through the following 
+// General Information about an assembly is controlled through the following
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.
 //
@@ -29,29 +29,29 @@ using System.Runtime.CompilerServices;
 [assembly: AssemblyDescription("log4net EventID Extension")]
 [assembly: AssemblyConfiguration("")]
 [assembly: AssemblyProduct("log4net.Ext.EventID")]
-[assembly: AssemblyCulture("")]                
+[assembly: AssemblyCulture("")]
 
 //
-// In order to sign your assembly you must specify a key to use. Refer to the 
+// In order to sign your assembly you must specify a key to use. Refer to the
 // Microsoft .NET Framework documentation for more information on assembly 
signing.
 //
-// Use the attributes below to control which key is used for signing. 
+// Use the attributes below to control which key is used for signing.
 //
-// Notes: 
+// Notes:
 //   (*) If no key is specified, the assembly is not signed.
 //   (*) KeyName refers to a key that has been installed in the Crypto Service
 //       Provider (CSP) on your machine. KeyFile refers to a file which 
contains
 //       a key.
-//   (*) If the KeyFile and the KeyName values are both specified, the 
+//   (*) If the KeyFile and the KeyName values are both specified, the
 //       following processing occurs:
 //       (1) If the KeyName can be found in the CSP, that key is used.
-//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
+//       (2) If the KeyName does not exist and the KeyFile does exist, the key
 //           in the KeyFile is installed into the CSP and used.
 //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) 
utility.
 //       When specifying the KeyFile, the location of the KeyFile should be
 //       relative to the project output directory which is
 //       %Project Directory%\obj\<configuration>. For example, if your KeyFile 
is
-//       located in the project directory, you would specify the 
AssemblyKeyFile 
+//       located in the project directory, you would specify the 
AssemblyKeyFile
 //       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
 //       documentation for more information on this.

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogImpl.cs
----------------------------------------------------------------------
diff --git a/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogImpl.cs 
b/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogImpl.cs
index 8edd7f8..8482e51 100644
--- a/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogImpl.cs
+++ b/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogImpl.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogManager.cs
----------------------------------------------------------------------
diff --git a/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogManager.cs 
b/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogManager.cs
index a5d2798..ab6b092 100644
--- a/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogManager.cs
+++ b/extensions/net/1.0/log4net.Ext.EventID/cs/src/EventIDLogManager.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -63,7 +63,7 @@ namespace log4net.Ext.EventID
                /// </remarks>
                /// <param name="name">The fully qualified logger name to look 
for</param>
                /// <returns>The logger found, or null</returns>
-               public static IEventIDLog Exists(string name) 
+               public static IEventIDLog Exists(string name)
                {
                        return Exists(Assembly.GetCallingAssembly(), name);
                }
@@ -79,7 +79,7 @@ namespace log4net.Ext.EventID
                /// <param name="domain">the domain to lookup in</param>
                /// <param name="name">The fully qualified logger name to look 
for</param>
                /// <returns>The logger found, or null</returns>
-               public static IEventIDLog Exists(string domain, string name) 
+               public static IEventIDLog Exists(string domain, string name)
                {
                        return WrapLogger(LoggerManager.Exists(domain, name));
                }
@@ -95,7 +95,7 @@ namespace log4net.Ext.EventID
                /// <param name="assembly">the assembly to use to lookup the 
domain</param>
                /// <param name="name">The fully qualified logger name to look 
for</param>
                /// <returns>The logger found, or null</returns>
-               public static IEventIDLog Exists(Assembly assembly, string 
name) 
+               public static IEventIDLog Exists(Assembly assembly, string name)
                {
                        return WrapLogger(LoggerManager.Exists(assembly, name));
                }
@@ -146,7 +146,7 @@ namespace log4net.Ext.EventID
                /// parameter. If the named logger already exists, then the
                /// existing instance will be returned. Otherwise, a new 
instance is
                /// created.</para>
-               /// 
+               ///
                /// <para>By default, loggers do not have a set level but 
inherit
                /// it from the hierarchy. This is one of the central features 
of
                /// log4net.</para>
@@ -166,7 +166,7 @@ namespace log4net.Ext.EventID
                /// parameter. If the named logger already exists, then the
                /// existing instance will be returned. Otherwise, a new 
instance is
                /// created.</para>
-               /// 
+               ///
                /// <para>By default, loggers do not have a set level but 
inherit
                /// it from the hierarchy. This is one of the central features 
of
                /// log4net.</para>
@@ -187,7 +187,7 @@ namespace log4net.Ext.EventID
                /// parameter. If the named logger already exists, then the
                /// existing instance will be returned. Otherwise, a new 
instance is
                /// created.</para>
-               /// 
+               ///
                /// <para>By default, loggers do not have a set level but 
inherit
                /// it from the hierarchy. This is one of the central features 
of
                /// log4net.</para>
@@ -198,7 +198,7 @@ namespace log4net.Ext.EventID
                public static IEventIDLog GetLogger(Assembly assembly, string 
name)
                {
                        return WrapLogger(LoggerManager.GetLogger(assembly, 
name));
-               }       
+               }
 
                /// <summary>
                /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
@@ -206,10 +206,10 @@ namespace log4net.Ext.EventID
                /// <remarks>
                /// Get the logger for the fully qualified name of the type 
specified.
                /// </remarks>
-               /// <param name="type">The full name of <paramref name="type"/> 
will 
+               /// <param name="type">The full name of <paramref name="type"/> 
will
                /// be used as the name of the logger to retrieve.</param>
                /// <returns>the logger with the name specified</returns>
-               public static IEventIDLog GetLogger(Type type) 
+               public static IEventIDLog GetLogger(Type type)
                {
                        return GetLogger(Assembly.GetCallingAssembly(), 
type.FullName);
                }
@@ -221,10 +221,10 @@ namespace log4net.Ext.EventID
                /// Get the logger for the fully qualified name of the type 
specified.
                /// </remarks>
                /// <param name="domain">the domain to lookup in</param>
-               /// <param name="type">The full name of <paramref name="type"/> 
will 
+               /// <param name="type">The full name of <paramref name="type"/> 
will
                /// be used as the name of the logger to retrieve.</param>
                /// <returns>the logger with the name specified</returns>
-               public static IEventIDLog GetLogger(string domain, Type type) 
+               public static IEventIDLog GetLogger(string domain, Type type)
                {
                        return WrapLogger(LoggerManager.GetLogger(domain, 
type));
                }
@@ -236,10 +236,10 @@ namespace log4net.Ext.EventID
                /// Get the logger for the fully qualified name of the type 
specified.
                /// </remarks>
                /// <param name="assembly">the assembly to use to lookup the 
domain</param>
-               /// <param name="type">The full name of <paramref name="type"/> 
will 
+               /// <param name="type">The full name of <paramref name="type"/> 
will
                /// be used as the name of the logger to retrieve.</param>
                /// <returns>the logger with the name specified</returns>
-               public static IEventIDLog GetLogger(Assembly assembly, Type 
type) 
+               public static IEventIDLog GetLogger(Assembly assembly, Type 
type)
                {
                        return WrapLogger(LoggerManager.GetLogger(assembly, 
type));
                }

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.EventID/cs/src/IEventIDLog.cs
----------------------------------------------------------------------
diff --git a/extensions/net/1.0/log4net.Ext.EventID/cs/src/IEventIDLog.cs 
b/extensions/net/1.0/log4net.Ext.EventID/cs/src/IEventIDLog.cs
index fb275bb..a173b7b 100644
--- a/extensions/net/1.0/log4net.Ext.EventID/cs/src/IEventIDLog.cs
+++ b/extensions/net/1.0/log4net.Ext.EventID/cs/src/IEventIDLog.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/AssemblyInfo.cs 
b/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/AssemblyInfo.cs
index a8055dd..59b2a95 100644
--- a/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/AssemblyInfo.cs
+++ b/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/AssemblyInfo.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -21,7 +21,7 @@ using System.Reflection;
 using System.Runtime.CompilerServices;
 
 //
-// General Information about an assembly is controlled through the following 
+// General Information about an assembly is controlled through the following
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.
 //
@@ -29,29 +29,29 @@ using System.Runtime.CompilerServices;
 [assembly: AssemblyDescription("log4net MarshalByRef Extension")]
 [assembly: AssemblyConfiguration("")]
 [assembly: AssemblyProduct("log4net.Ext.MarshalByRef")]
-[assembly: AssemblyCulture("")]                
+[assembly: AssemblyCulture("")]
 
 //
-// In order to sign your assembly you must specify a key to use. Refer to the 
+// In order to sign your assembly you must specify a key to use. Refer to the
 // Microsoft .NET Framework documentation for more information on assembly 
signing.
 //
-// Use the attributes below to control which key is used for signing. 
+// Use the attributes below to control which key is used for signing.
 //
-// Notes: 
+// Notes:
 //   (*) If no key is specified, the assembly is not signed.
 //   (*) KeyName refers to a key that has been installed in the Crypto Service
 //       Provider (CSP) on your machine. KeyFile refers to a file which 
contains
 //       a key.
-//   (*) If the KeyFile and the KeyName values are both specified, the 
+//   (*) If the KeyFile and the KeyName values are both specified, the
 //       following processing occurs:
 //       (1) If the KeyName can be found in the CSP, that key is used.
-//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
+//       (2) If the KeyName does not exist and the KeyFile does exist, the key
 //           in the KeyFile is installed into the CSP and used.
 //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) 
utility.
 //       When specifying the KeyFile, the location of the KeyFile should be
 //       relative to the project output directory which is
 //       %Project Directory%\obj\<configuration>. For example, if your KeyFile 
is
-//       located in the project directory, you would specify the 
AssemblyKeyFile 
+//       located in the project directory, you would specify the 
AssemblyKeyFile
 //       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
 //       documentation for more information on this.

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogImpl.cs
----------------------------------------------------------------------
diff --git 
a/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogImpl.cs 
b/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogImpl.cs
index feb5b90..c29b00d 100644
--- a/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogImpl.cs
+++ b/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogImpl.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -82,17 +82,17 @@ namespace log4net.Ext.MarshalByRef
 
                #region Implementation of ILog
 
-               public void Debug(object message) 
+               public void Debug(object message)
                {
                        Logger.Log(ThisDeclaringType, m_levelDebug, message, 
null);
                }
 
-               public void Debug(object message, Exception t) 
+               public void Debug(object message, Exception t)
                {
                        Logger.Log(ThisDeclaringType, m_levelDebug, message, t);
                }
 
-               public void DebugFormat(string format, params object[] args) 
+               public void DebugFormat(string format, params object[] args)
                {
                        if (IsDebugEnabled)
                        {
@@ -100,7 +100,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void DebugFormat(string format, object arg0) 
+               public void DebugFormat(string format, object arg0)
                {
                        if (IsDebugEnabled)
                        {
@@ -108,7 +108,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void DebugFormat(string format, object arg0, object 
arg1) 
+               public void DebugFormat(string format, object arg0, object arg1)
                {
                        if (IsDebugEnabled)
                        {
@@ -116,7 +116,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void DebugFormat(string format, object arg0, object 
arg1, object arg2) 
+               public void DebugFormat(string format, object arg0, object 
arg1, object arg2)
                {
                        if (IsDebugEnabled)
                        {
@@ -124,7 +124,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void DebugFormat(IFormatProvider provider, string 
format, params object[] args) 
+               public void DebugFormat(IFormatProvider provider, string 
format, params object[] args)
                {
                        if (IsDebugEnabled)
                        {
@@ -132,17 +132,17 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void Info(object message) 
+               public void Info(object message)
                {
                        Logger.Log(ThisDeclaringType, m_levelInfo, message, 
null);
                }
-  
-               public void Info(object message, Exception t) 
+
+               public void Info(object message, Exception t)
                {
                        Logger.Log(ThisDeclaringType, m_levelInfo, message, t);
                }
 
-               public void InfoFormat(string format, params object[] args) 
+               public void InfoFormat(string format, params object[] args)
                {
                        if (IsInfoEnabled)
                        {
@@ -150,7 +150,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void InfoFormat(string format, object arg0) 
+               public void InfoFormat(string format, object arg0)
                {
                        if (IsInfoEnabled)
                        {
@@ -158,7 +158,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void InfoFormat(string format, object arg0, object arg1) 
+               public void InfoFormat(string format, object arg0, object arg1)
                {
                        if (IsInfoEnabled)
                        {
@@ -166,7 +166,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void InfoFormat(string format, object arg0, object arg1, 
object arg2) 
+               public void InfoFormat(string format, object arg0, object arg1, 
object arg2)
                {
                        if (IsInfoEnabled)
                        {
@@ -174,7 +174,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void InfoFormat(IFormatProvider provider, string format, 
params object[] args) 
+               public void InfoFormat(IFormatProvider provider, string format, 
params object[] args)
                {
                        if (IsInfoEnabled)
                        {
@@ -182,17 +182,17 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void Warn(object message) 
+               public void Warn(object message)
                {
                        Logger.Log(ThisDeclaringType, m_levelWarn, message, 
null);
                }
-  
-               public void Warn(object message, Exception t) 
+
+               public void Warn(object message, Exception t)
                {
                        Logger.Log(ThisDeclaringType, m_levelWarn, message, t);
                }
 
-               public void WarnFormat(string format, params object[] args) 
+               public void WarnFormat(string format, params object[] args)
                {
                        if (IsWarnEnabled)
                        {
@@ -200,7 +200,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void WarnFormat(string format, object arg0) 
+               public void WarnFormat(string format, object arg0)
                {
                        if (IsWarnEnabled)
                        {
@@ -208,7 +208,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void WarnFormat(string format, object arg0, object arg1) 
+               public void WarnFormat(string format, object arg0, object arg1)
                {
                        if (IsWarnEnabled)
                        {
@@ -216,7 +216,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void WarnFormat(string format, object arg0, object arg1, 
object arg2) 
+               public void WarnFormat(string format, object arg0, object arg1, 
object arg2)
                {
                        if (IsWarnEnabled)
                        {
@@ -224,7 +224,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void WarnFormat(IFormatProvider provider, string format, 
params object[] args) 
+               public void WarnFormat(IFormatProvider provider, string format, 
params object[] args)
                {
                        if (IsWarnEnabled)
                        {
@@ -232,17 +232,17 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void Error(object message) 
+               public void Error(object message)
                {
                        Logger.Log(ThisDeclaringType, m_levelError, message, 
null);
                }
 
-               public void Error(object message, Exception t) 
+               public void Error(object message, Exception t)
                {
                        Logger.Log(ThisDeclaringType, m_levelError, message, t);
                }
 
-               public void ErrorFormat(string format, params object[] args) 
+               public void ErrorFormat(string format, params object[] args)
                {
                        if (IsErrorEnabled)
                        {
@@ -250,7 +250,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void ErrorFormat(string format, object arg0) 
+               public void ErrorFormat(string format, object arg0)
                {
                        if (IsErrorEnabled)
                        {
@@ -258,7 +258,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void ErrorFormat(string format, object arg0, object 
arg1) 
+               public void ErrorFormat(string format, object arg0, object arg1)
                {
                        if (IsErrorEnabled)
                        {
@@ -266,7 +266,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void ErrorFormat(string format, object arg0, object 
arg1, object arg2) 
+               public void ErrorFormat(string format, object arg0, object 
arg1, object arg2)
                {
                        if (IsErrorEnabled)
                        {
@@ -274,7 +274,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void ErrorFormat(IFormatProvider provider, string 
format, params object[] args) 
+               public void ErrorFormat(IFormatProvider provider, string 
format, params object[] args)
                {
                        if (IsErrorEnabled)
                        {
@@ -282,17 +282,17 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void Fatal(object message) 
+               public void Fatal(object message)
                {
                        Logger.Log(ThisDeclaringType, m_levelFatal, message, 
null);
                }
-  
-               public void Fatal(object message, Exception t) 
+
+               public void Fatal(object message, Exception t)
                {
                        Logger.Log(ThisDeclaringType, m_levelFatal, message, t);
                }
 
-               public void FatalFormat(string format, params object[] args) 
+               public void FatalFormat(string format, params object[] args)
                {
                        if (IsFatalEnabled)
                        {
@@ -300,7 +300,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void FatalFormat(string format, object arg0) 
+               public void FatalFormat(string format, object arg0)
                {
                        if (IsFatalEnabled)
                        {
@@ -308,7 +308,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void FatalFormat(string format, object arg0, object 
arg1) 
+               public void FatalFormat(string format, object arg0, object arg1)
                {
                        if (IsFatalEnabled)
                        {
@@ -316,7 +316,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void FatalFormat(string format, object arg0, object 
arg1, object arg2) 
+               public void FatalFormat(string format, object arg0, object 
arg1, object arg2)
                {
                        if (IsFatalEnabled)
                        {
@@ -324,7 +324,7 @@ namespace log4net.Ext.MarshalByRef
                        }
                }
 
-               public void FatalFormat(IFormatProvider provider, string 
format, params object[] args) 
+               public void FatalFormat(IFormatProvider provider, string 
format, params object[] args)
                {
                        if (IsFatalEnabled)
                        {
@@ -336,7 +336,7 @@ namespace log4net.Ext.MarshalByRef
                {
                        get { return Logger.IsEnabledFor(m_levelDebug); }
                }
-  
+
                public bool IsInfoEnabled
                {
                        get { return Logger.IsEnabledFor(m_levelInfo); }

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogManager.cs
----------------------------------------------------------------------
diff --git 
a/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogManager.cs 
b/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogManager.cs
index b88692c..5450794 100644
--- 
a/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogManager.cs
+++ 
b/extensions/net/1.0/log4net.Ext.MarshalByRef/cs/src/MarshalByRefLogManager.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -66,7 +66,7 @@ namespace log4net.Ext.MarshalByRef
                /// </remarks>
                /// <param name="name">The fully qualified logger name to look 
for</param>
                /// <returns>The logger found, or null</returns>
-               public static ILog Exists(string name) 
+               public static ILog Exists(string name)
                {
                        return Exists(Assembly.GetCallingAssembly(), name);
                }
@@ -82,7 +82,7 @@ namespace log4net.Ext.MarshalByRef
                /// <param name="domain">the domain to lookup in</param>
                /// <param name="name">The fully qualified logger name to look 
for</param>
                /// <returns>The logger found, or null</returns>
-               public static ILog Exists(string domain, string name) 
+               public static ILog Exists(string domain, string name)
                {
                        return WrapLogger(LoggerManager.Exists(domain, name));
                }
@@ -98,7 +98,7 @@ namespace log4net.Ext.MarshalByRef
                /// <param name="assembly">the assembly to use to lookup the 
domain</param>
                /// <param name="name">The fully qualified logger name to look 
for</param>
                /// <returns>The logger found, or null</returns>
-               public static ILog Exists(Assembly assembly, string name) 
+               public static ILog Exists(Assembly assembly, string name)
                {
                        return WrapLogger(LoggerManager.Exists(assembly, name));
                }
@@ -149,7 +149,7 @@ namespace log4net.Ext.MarshalByRef
                /// parameter. If the named logger already exists, then the
                /// existing instance will be returned. Otherwise, a new 
instance is
                /// created.</para>
-               /// 
+               ///
                /// <para>By default, loggers do not have a set level but 
inherit
                /// it from the hierarchy. This is one of the central features 
of
                /// log4net.</para>
@@ -169,7 +169,7 @@ namespace log4net.Ext.MarshalByRef
                /// parameter. If the named logger already exists, then the
                /// existing instance will be returned. Otherwise, a new 
instance is
                /// created.</para>
-               /// 
+               ///
                /// <para>By default, loggers do not have a set level but 
inherit
                /// it from the hierarchy. This is one of the central features 
of
                /// log4net.</para>
@@ -190,7 +190,7 @@ namespace log4net.Ext.MarshalByRef
                /// parameter. If the named logger already exists, then the
                /// existing instance will be returned. Otherwise, a new 
instance is
                /// created.</para>
-               /// 
+               ///
                /// <para>By default, loggers do not have a set level but 
inherit
                /// it from the hierarchy. This is one of the central features 
of
                /// log4net.</para>
@@ -201,7 +201,7 @@ namespace log4net.Ext.MarshalByRef
                public static ILog GetLogger(Assembly assembly, string name)
                {
                        return WrapLogger(LoggerManager.GetLogger(assembly, 
name));
-               }       
+               }
 
                /// <summary>
                /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
@@ -209,10 +209,10 @@ namespace log4net.Ext.MarshalByRef
                /// <remarks>
                /// Get the logger for the fully qualified name of the type 
specified.
                /// </remarks>
-               /// <param name="type">The full name of <paramref name="type"/> 
will 
+               /// <param name="type">The full name of <paramref name="type"/> 
will
                /// be used as the name of the logger to retrieve.</param>
                /// <returns>the logger with the name specified</returns>
-               public static ILog GetLogger(Type type) 
+               public static ILog GetLogger(Type type)
                {
                        return GetLogger(Assembly.GetCallingAssembly(), 
type.FullName);
                }
@@ -224,10 +224,10 @@ namespace log4net.Ext.MarshalByRef
                /// Get the logger for the fully qualified name of the type 
specified.
                /// </remarks>
                /// <param name="domain">the domain to lookup in</param>
-               /// <param name="type">The full name of <paramref name="type"/> 
will 
+               /// <param name="type">The full name of <paramref name="type"/> 
will
                /// be used as the name of the logger to retrieve.</param>
                /// <returns>the logger with the name specified</returns>
-               public static ILog GetLogger(string domain, Type type) 
+               public static ILog GetLogger(string domain, Type type)
                {
                        return WrapLogger(LoggerManager.GetLogger(domain, 
type));
                }
@@ -239,10 +239,10 @@ namespace log4net.Ext.MarshalByRef
                /// Get the logger for the fully qualified name of the type 
specified.
                /// </remarks>
                /// <param name="assembly">the assembly to use to lookup the 
domain</param>
-               /// <param name="type">The full name of <paramref name="type"/> 
will 
+               /// <param name="type">The full name of <paramref name="type"/> 
will
                /// be used as the name of the logger to retrieve.</param>
                /// <returns>the logger with the name specified</returns>
-               public static ILog GetLogger(Assembly assembly, Type type) 
+               public static ILog GetLogger(Assembly assembly, Type type)
                {
                        return WrapLogger(LoggerManager.GetLogger(assembly, 
type));
                }

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.Trace/cs/src/AssemblyInfo.cs
----------------------------------------------------------------------
diff --git a/extensions/net/1.0/log4net.Ext.Trace/cs/src/AssemblyInfo.cs 
b/extensions/net/1.0/log4net.Ext.Trace/cs/src/AssemblyInfo.cs
index 5607beb..1a73858 100644
--- a/extensions/net/1.0/log4net.Ext.Trace/cs/src/AssemblyInfo.cs
+++ b/extensions/net/1.0/log4net.Ext.Trace/cs/src/AssemblyInfo.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -21,7 +21,7 @@ using System.Reflection;
 using System.Runtime.CompilerServices;
 
 //
-// General Information about an assembly is controlled through the following 
+// General Information about an assembly is controlled through the following
 // set of attributes. Change these attribute values to modify the information
 // associated with an assembly.
 //
@@ -29,29 +29,29 @@ using System.Runtime.CompilerServices;
 [assembly: AssemblyDescription("log4net Trace Extension")]
 [assembly: AssemblyConfiguration("")]
 [assembly: AssemblyProduct("log4net.Ext.Trace")]
-[assembly: AssemblyCulture("")]                
+[assembly: AssemblyCulture("")]
 
 //
-// In order to sign your assembly you must specify a key to use. Refer to the 
+// In order to sign your assembly you must specify a key to use. Refer to the
 // Microsoft .NET Framework documentation for more information on assembly 
signing.
 //
-// Use the attributes below to control which key is used for signing. 
+// Use the attributes below to control which key is used for signing.
 //
-// Notes: 
+// Notes:
 //   (*) If no key is specified, the assembly is not signed.
 //   (*) KeyName refers to a key that has been installed in the Crypto Service
 //       Provider (CSP) on your machine. KeyFile refers to a file which 
contains
 //       a key.
-//   (*) If the KeyFile and the KeyName values are both specified, the 
+//   (*) If the KeyFile and the KeyName values are both specified, the
 //       following processing occurs:
 //       (1) If the KeyName can be found in the CSP, that key is used.
-//       (2) If the KeyName does not exist and the KeyFile does exist, the key 
+//       (2) If the KeyName does not exist and the KeyFile does exist, the key
 //           in the KeyFile is installed into the CSP and used.
 //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) 
utility.
 //       When specifying the KeyFile, the location of the KeyFile should be
 //       relative to the project output directory which is
 //       %Project Directory%\obj\<configuration>. For example, if your KeyFile 
is
-//       located in the project directory, you would specify the 
AssemblyKeyFile 
+//       located in the project directory, you would specify the 
AssemblyKeyFile
 //       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
 //       documentation for more information on this.

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.Trace/cs/src/ITraceLog.cs
----------------------------------------------------------------------
diff --git a/extensions/net/1.0/log4net.Ext.Trace/cs/src/ITraceLog.cs 
b/extensions/net/1.0/log4net.Ext.Trace/cs/src/ITraceLog.cs
index d5b107c..da5e4fd 100644
--- a/extensions/net/1.0/log4net.Ext.Trace/cs/src/ITraceLog.cs
+++ b/extensions/net/1.0/log4net.Ext.Trace/cs/src/ITraceLog.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -27,7 +27,7 @@ namespace log4net.Ext.Trace
        {
                void Trace(object message);
                void Trace(object message, Exception t);
-               void TraceFormat(string format, params object[] args); 
+               void TraceFormat(string format, params object[] args);
                bool IsTraceEnabled { get; }
        }
 }

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogImpl.cs
----------------------------------------------------------------------
diff --git a/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogImpl.cs 
b/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogImpl.cs
index 7c86594..09b5d34 100644
--- a/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogImpl.cs
+++ b/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogImpl.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -36,12 +36,12 @@ namespace log4net.Ext.Trace
                /// The default value for the TRACE level
                /// </summary>
                private readonly static Level s_defaultLevelTrace = new 
Level(20000, "TRACE");
-               
+
                /// <summary>
                /// The current value for the TRACE level
                /// </summary>
                private Level m_levelTrace;
-               
+
 
                public TraceLogImpl(ILogger logger) : base(logger)
                {

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogManager.cs
----------------------------------------------------------------------
diff --git a/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogManager.cs 
b/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogManager.cs
index 0299407..1d4ad38 100644
--- a/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogManager.cs
+++ b/extensions/net/1.0/log4net.Ext.Trace/cs/src/TraceLogManager.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -63,7 +63,7 @@ namespace log4net.Ext.Trace
                /// </remarks>
                /// <param name="name">The fully qualified logger name to look 
for</param>
                /// <returns>The logger found, or null</returns>
-               public static ITraceLog Exists(string name) 
+               public static ITraceLog Exists(string name)
                {
                        return Exists(Assembly.GetCallingAssembly(), name);
                }
@@ -79,7 +79,7 @@ namespace log4net.Ext.Trace
                /// <param name="domain">the domain to lookup in</param>
                /// <param name="name">The fully qualified logger name to look 
for</param>
                /// <returns>The logger found, or null</returns>
-               public static ITraceLog Exists(string domain, string name) 
+               public static ITraceLog Exists(string domain, string name)
                {
                        return WrapLogger(LoggerManager.Exists(domain, name));
                }
@@ -95,7 +95,7 @@ namespace log4net.Ext.Trace
                /// <param name="assembly">the assembly to use to lookup the 
domain</param>
                /// <param name="name">The fully qualified logger name to look 
for</param>
                /// <returns>The logger found, or null</returns>
-               public static ITraceLog Exists(Assembly assembly, string name) 
+               public static ITraceLog Exists(Assembly assembly, string name)
                {
                        return WrapLogger(LoggerManager.Exists(assembly, name));
                }
@@ -146,7 +146,7 @@ namespace log4net.Ext.Trace
                /// parameter. If the named logger already exists, then the
                /// existing instance will be returned. Otherwise, a new 
instance is
                /// created.</para>
-               /// 
+               ///
                /// <para>By default, loggers do not have a set level but 
inherit
                /// it from the hierarchy. This is one of the central features 
of
                /// log4net.</para>
@@ -166,7 +166,7 @@ namespace log4net.Ext.Trace
                /// parameter. If the named logger already exists, then the
                /// existing instance will be returned. Otherwise, a new 
instance is
                /// created.</para>
-               /// 
+               ///
                /// <para>By default, loggers do not have a set level but 
inherit
                /// it from the hierarchy. This is one of the central features 
of
                /// log4net.</para>
@@ -187,7 +187,7 @@ namespace log4net.Ext.Trace
                /// parameter. If the named logger already exists, then the
                /// existing instance will be returned. Otherwise, a new 
instance is
                /// created.</para>
-               /// 
+               ///
                /// <para>By default, loggers do not have a set level but 
inherit
                /// it from the hierarchy. This is one of the central features 
of
                /// log4net.</para>
@@ -198,7 +198,7 @@ namespace log4net.Ext.Trace
                public static ITraceLog GetLogger(Assembly assembly, string 
name)
                {
                        return WrapLogger(LoggerManager.GetLogger(assembly, 
name));
-               }       
+               }
 
                /// <summary>
                /// Shorthand for <see cref="M:LogManager.GetLogger(string)"/>.
@@ -206,10 +206,10 @@ namespace log4net.Ext.Trace
                /// <remarks>
                /// Get the logger for the fully qualified name of the type 
specified.
                /// </remarks>
-               /// <param name="type">The full name of <paramref name="type"/> 
will 
+               /// <param name="type">The full name of <paramref name="type"/> 
will
                /// be used as the name of the logger to retrieve.</param>
                /// <returns>the logger with the name specified</returns>
-               public static ITraceLog GetLogger(Type type) 
+               public static ITraceLog GetLogger(Type type)
                {
                        return GetLogger(Assembly.GetCallingAssembly(), 
type.FullName);
                }
@@ -221,10 +221,10 @@ namespace log4net.Ext.Trace
                /// Get the logger for the fully qualified name of the type 
specified.
                /// </remarks>
                /// <param name="domain">the domain to lookup in</param>
-               /// <param name="type">The full name of <paramref name="type"/> 
will 
+               /// <param name="type">The full name of <paramref name="type"/> 
will
                /// be used as the name of the logger to retrieve.</param>
                /// <returns>the logger with the name specified</returns>
-               public static ITraceLog GetLogger(string domain, Type type) 
+               public static ITraceLog GetLogger(string domain, Type type)
                {
                        return WrapLogger(LoggerManager.GetLogger(domain, 
type));
                }
@@ -236,10 +236,10 @@ namespace log4net.Ext.Trace
                /// Get the logger for the fully qualified name of the type 
specified.
                /// </remarks>
                /// <param name="assembly">the assembly to use to lookup the 
domain</param>
-               /// <param name="type">The full name of <paramref name="type"/> 
will 
+               /// <param name="type">The full name of <paramref name="type"/> 
will
                /// be used as the name of the logger to retrieve.</param>
                /// <returns>the logger with the name specified</returns>
-               public static ITraceLog GetLogger(Assembly assembly, Type type) 
+               public static ITraceLog GetLogger(Assembly assembly, Type type)
                {
                        return WrapLogger(LoggerManager.GetLogger(assembly, 
type));
                }

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/netstandard/log4net.tests/ApplicationException.cs
----------------------------------------------------------------------
diff --git a/netstandard/log4net.tests/ApplicationException.cs 
b/netstandard/log4net.tests/ApplicationException.cs
index 695eeb8..3d751a7 100644
--- a/netstandard/log4net.tests/ApplicationException.cs
+++ b/netstandard/log4net.tests/ApplicationException.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/netstandard/log4net.tests/CompatibilityExtensions.cs
----------------------------------------------------------------------
diff --git a/netstandard/log4net.tests/CompatibilityExtensions.cs 
b/netstandard/log4net.tests/CompatibilityExtensions.cs
index 47ce22f..466f041 100644
--- a/netstandard/log4net.tests/CompatibilityExtensions.cs
+++ b/netstandard/log4net.tests/CompatibilityExtensions.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/netstandard/log4net.tests/ExpectedExceptionAttribute.cs
----------------------------------------------------------------------
diff --git a/netstandard/log4net.tests/ExpectedExceptionAttribute.cs 
b/netstandard/log4net.tests/ExpectedExceptionAttribute.cs
index d51c05c..d88e702 100644
--- a/netstandard/log4net.tests/ExpectedExceptionAttribute.cs
+++ b/netstandard/log4net.tests/ExpectedExceptionAttribute.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/netstandard/log4net/CompatibilityExtensions.cs
----------------------------------------------------------------------
diff --git a/netstandard/log4net/CompatibilityExtensions.cs 
b/netstandard/log4net/CompatibilityExtensions.cs
index c0a9076..e36bae8 100644
--- a/netstandard/log4net/CompatibilityExtensions.cs
+++ b/netstandard/log4net/CompatibilityExtensions.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0

http://git-wip-us.apache.org/repos/asf/logging-log4net/blob/8a5b4204/src/Appender/AdoNetAppender.cs
----------------------------------------------------------------------
diff --git a/src/Appender/AdoNetAppender.cs b/src/Appender/AdoNetAppender.cs
index 061aece..530d875 100644
--- a/src/Appender/AdoNetAppender.cs
+++ b/src/Appender/AdoNetAppender.cs
@@ -1,10 +1,10 @@
 #region Apache License
 //
-// Licensed to the Apache Software Foundation (ASF) under one or more 
+// Licensed to the Apache Software Foundation (ASF) under one or more
 // contributor license agreements. See the NOTICE file distributed with
-// this work for additional information regarding copyright ownership. 
+// this work for additional information regarding copyright ownership.
 // The ASF licenses this file to you under the Apache License, Version 2.0
-// (the "License"); you may not use this file except in compliance with 
+// (the "License"); you may not use this file except in compliance with
 // the License. You may obtain a copy of the License at
 //
 // http://www.apache.org/licenses/LICENSE-2.0
@@ -38,8 +38,8 @@ namespace log4net.Appender
        /// <remarks>
        /// <para>
        /// <see cref="AdoNetAppender"/> appends logging events to a table 
within a
-       /// database. The appender can be configured to specify the connection 
-       /// string by setting the <see cref="ConnectionString"/> property. 
+       /// database. The appender can be configured to specify the connection
+       /// string by setting the <see cref="ConnectionString"/> property.
        /// The connection type (provider) can be specified by setting the <see 
cref="ConnectionType"/>
        /// property. For more information on database connection strings for
        /// your specific database see <a 
href="http://www.connectionstrings.com/";>http://www.connectionstrings.com/</a>.
@@ -69,13 +69,13 @@ namespace log4net.Appender
        /// <example>
        /// An example of a SQL Server table that could be logged to:
        /// <code lang="SQL">
-       /// CREATE TABLE [dbo].[Log] ( 
+       /// CREATE TABLE [dbo].[Log] (
        ///   [ID] [int] IDENTITY (1, 1) NOT NULL ,
        ///   [Date] [datetime] NOT NULL ,
        ///   [Thread] [varchar] (255) NOT NULL ,
        ///   [Level] [varchar] (20) NOT NULL ,
        ///   [Logger] [varchar] (255) NOT NULL ,
-       ///   [Message] [varchar] (4000) NOT NULL 
+       ///   [Message] [varchar] (4000) NOT NULL
        /// ) ON [PRIMARY]
        /// </code>
        /// </example>
@@ -126,7 +126,7 @@ namespace log4net.Appender
        {
                #region Public Instance Constructors
 
-               /// <summary> 
+               /// <summary>
                /// Initializes a new instance of the <see 
cref="AdoNetAppender" /> class.
                /// </summary>
                /// <remarks>
@@ -146,7 +146,7 @@ namespace log4net.Appender
                #region Public Instance Properties
 
                /// <summary>
-               /// Gets or sets the database connection string that is used to 
connect to 
+               /// Gets or sets the database connection string that is used to 
connect to
                /// the database.
                /// </summary>
                /// <value>
@@ -214,19 +214,19 @@ namespace log4net.Appender
                /// <example>Use the OLE DB Provider. This is the default value.
                /// <code>System.Data.OleDb.OleDbConnection, System.Data, 
Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</code>
                /// </example>
-               /// <example>Use the MS SQL Server Provider. 
+               /// <example>Use the MS SQL Server Provider.
                /// <code>System.Data.SqlClient.SqlConnection, System.Data, 
Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</code>
                /// </example>
-               /// <example>Use the ODBC Provider. 
+               /// <example>Use the ODBC Provider.
                /// 
<code>Microsoft.Data.Odbc.OdbcConnection,Microsoft.Data.Odbc,version=1.0.3300.0,publicKeyToken=b77a5c561934e089,culture=neutral</code>
-               /// This is an optional package that you can download from 
-               /// <a 
href="http://msdn.microsoft.com/downloads";>http://msdn.microsoft.com/downloads</a>
 
+               /// This is an optional package that you can download from
+               /// <a 
href="http://msdn.microsoft.com/downloads";>http://msdn.microsoft.com/downloads</a>
                /// search for <b>ODBC .NET Data Provider</b>.
                /// </example>
-               /// <example>Use the Oracle Provider. 
+               /// <example>Use the Oracle Provider.
                /// <code>System.Data.OracleClient.OracleConnection, 
System.Data.OracleClient, Version=1.0.3300.0, Culture=neutral, 
PublicKeyToken=b77a5c561934e089</code>
-               /// This is an optional package that you can download from 
-               /// <a 
href="http://msdn.microsoft.com/downloads";>http://msdn.microsoft.com/downloads</a>
 
+               /// This is an optional package that you can download from
+               /// <a 
href="http://msdn.microsoft.com/downloads";>http://msdn.microsoft.com/downloads</a>
                /// search for <b>.NET Managed Provider for Oracle</b>.
                /// </example>
                public string ConnectionType
@@ -272,7 +272,7 @@ namespace log4net.Appender
                /// <remarks>
                /// <para>
                /// This value may be either <see 
cref="System.Data.CommandType.Text"/> (<c>System.Data.CommandType.Text</c>) to 
specify
-               /// that the <see cref="CommandText"/> is a prepared statement 
to execute, 
+               /// that the <see cref="CommandText"/> is a prepared statement 
to execute,
                /// or <see cref="System.Data.CommandType.StoredProcedure"/> 
(<c>System.Data.CommandType.StoredProcedure</c>) to specify that the
                /// <see cref="CommandText"/> property is the name of a stored 
procedure
                /// to execute.
@@ -336,7 +336,7 @@ namespace log4net.Appender
                /// </summary>
                /// <value>
                /// <c>true</c> if the appender should try to reconnect to the 
database after an
-               /// error has occurred, otherwise <c>false</c>. The default 
value is <c>false</c>, 
+               /// error has occurred, otherwise <c>false</c>. The default 
value is <c>false</c>,
                /// i.e. not to try to reconnect.
                /// </value>
                /// <remarks>
@@ -351,7 +351,7 @@ namespace log4net.Appender
                /// <note>
                /// When the appender attempts to connect to the database there 
may be a
                /// delay of up to the connection timeout specified in the 
connection string.
-               /// This delay will block the calling application's thread. 
+               /// This delay will block the calling application's thread.
                /// Until the connection can be reestablished this potential 
delay may occur multiple times.
                /// </note>
                /// </remarks>
@@ -372,10 +372,10 @@ namespace log4net.Appender
                /// The underlying <see cref="IDbConnection" />.
                /// </value>
                /// <remarks>
-               /// <see cref="AdoNetAppender" /> creates a <see 
cref="IDbConnection" /> to insert 
-               /// logging events into a database.  Classes deriving from <see 
cref="AdoNetAppender" /> 
-               /// can use this property to get or set this <see 
cref="IDbConnection" />.  Use the 
-               /// underlying <see cref="IDbConnection" /> returned from <see 
cref="Connection" /> if 
+               /// <see cref="AdoNetAppender" /> creates a <see 
cref="IDbConnection" /> to insert
+               /// logging events into a database.  Classes deriving from <see 
cref="AdoNetAppender" />
+               /// can use this property to get or set this <see 
cref="IDbConnection" />.  Use the
+               /// underlying <see cref="IDbConnection" /> returned from <see 
cref="Connection" /> if
                /// you require access beyond that which <see 
cref="AdoNetAppender" /> provides.
                /// </remarks>
                protected IDbConnection Connection
@@ -394,13 +394,13 @@ namespace log4net.Appender
                /// <remarks>
                /// <para>
                /// This is part of the <see cref="IOptionHandler"/> delayed 
object
-               /// activation scheme. The <see cref="ActivateOptions"/> method 
must 
+               /// activation scheme. The <see cref="ActivateOptions"/> method 
must
                /// be called on this object after the configuration properties 
have
                /// been set. Until <see cref="ActivateOptions"/> is called this
-               /// object is in an undefined state and must not be used. 
+               /// object is in an undefined state and must not be used.
                /// </para>
                /// <para>
-               /// If any of the configuration properties are modified then 
+               /// If any of the configuration properties are modified then
                /// <see cref="ActivateOptions"/> must be called again.
                /// </para>
                /// </remarks>
@@ -599,7 +599,7 @@ namespace log4net.Appender
                /// </summary>
                /// <param name="logEvent">The event being logged.</param>
                /// <remarks>
-               /// This method can be overridden by subclasses to provide 
+               /// This method can be overridden by subclasses to provide
                /// more control over the format of the database statement.
                /// </remarks>
                /// <returns>
@@ -690,7 +690,7 @@ namespace log4net.Appender
                /// <remarks>
                /// <para>
                /// Gets the Type of the ADO.NET provider to use to connect to 
the
-               /// database. This method resolves the type specified in the 
+               /// database. This method resolves the type specified in the
                /// <see cref="ConnectionType"/> property.
                /// </para>
                /// <para>
@@ -718,7 +718,7 @@ namespace log4net.Appender
 
                /// <summary>
                /// Connects to the database.
-               /// </summary>          
+               /// </summary>
                private void InitializeDatabaseConnection()
                {
                        string connectionStringContext = "Unable to determine 
connection string context.";
@@ -923,7 +923,7 @@ namespace log4net.Appender
                /// enumeration. See <see cref="IDataParameter.DbType"/>.
                /// </para>
                /// <para>
-               /// This property is optional. If not specified the ADO.NET 
provider 
+               /// This property is optional. If not specified the ADO.NET 
provider
                /// will attempt to infer the type from the value.
                /// </para>
                /// </remarks>
@@ -949,7 +949,7 @@ namespace log4net.Appender
                /// The maximum number of digits used to represent the Value.
                /// </para>
                /// <para>
-               /// This property is optional. If not specified the ADO.NET 
provider 
+               /// This property is optional. If not specified the ADO.NET 
provider
                /// will attempt to infer the precision from the value.
                /// </para>
                /// </remarks>
@@ -971,7 +971,7 @@ namespace log4net.Appender
                /// The number of decimal places to which Value is resolved.
                /// </para>
                /// <para>
-               /// This property is optional. If not specified the ADO.NET 
provider 
+               /// This property is optional. If not specified the ADO.NET 
provider
                /// will attempt to infer the scale from the value.
                /// </para>
                /// </remarks>
@@ -993,7 +993,7 @@ namespace log4net.Appender
                /// The maximum size, in bytes, of the data within the column.
                /// </para>
                /// <para>
-               /// This property is optional. If not specified the ADO.NET 
provider 
+               /// This property is optional. If not specified the ADO.NET 
provider
                /// will attempt to infer the size from the value.
                /// </para>
                /// <para>
@@ -1008,8 +1008,8 @@ namespace log4net.Appender
                }
 
                /// <summary>
-               /// Gets or sets the <see cref="IRawLayout"/> to use to 
-               /// render the logging event into an object for this 
+               /// Gets or sets the <see cref="IRawLayout"/> to use to
+               /// render the logging event into an object for this
                /// parameter.
                /// </summary>
                /// <value>

Reply via email to