You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ibatis.apache.org by rg...@apache.org on 2006/11/13 05:46:54 UTC

svn commit: r474143 - in /ibatis/trunk/cs/mapper/IBatisNet.Common: IBatisNet.Common.2005.csproj IBatisNet.Common.csproj Logging/Impl/AbstractLogger.cs

Author: rgrabowski
Date: Sun Nov 12 20:46:53 2006
New Revision: 474143

URL: http://svn.apache.org/viewvc?view=rev&rev=474143
Log:
Added AbstractLogger.cs to project files. Added Apache notice to AbstractLogger.

Modified:
    ibatis/trunk/cs/mapper/IBatisNet.Common/IBatisNet.Common.2005.csproj
    ibatis/trunk/cs/mapper/IBatisNet.Common/IBatisNet.Common.csproj
    ibatis/trunk/cs/mapper/IBatisNet.Common/Logging/Impl/AbstractLogger.cs

Modified: ibatis/trunk/cs/mapper/IBatisNet.Common/IBatisNet.Common.2005.csproj
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.Common/IBatisNet.Common.2005.csproj?view=diff&rev=474143&r1=474142&r2=474143
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.Common/IBatisNet.Common.2005.csproj (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.Common/IBatisNet.Common.2005.csproj Sun Nov 12 20:46:53 2006
@@ -140,6 +140,9 @@
     <Compile Include="Logging\Impl\ConsoleOutLoggerFA.cs">
       <SubType>Code</SubType>
     </Compile>
+    <Compile Include="Logging\Impl\AbstractLogger.cs">
+      <SubType>Code</SubType>
+    </Compile>
     <Compile Include="Logging\Impl\NoOpLogger.cs">
       <SubType>Code</SubType>
     </Compile>

Modified: ibatis/trunk/cs/mapper/IBatisNet.Common/IBatisNet.Common.csproj
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.Common/IBatisNet.Common.csproj?view=diff&rev=474143&r1=474142&r2=474143
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.Common/IBatisNet.Common.csproj (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.Common/IBatisNet.Common.csproj Sun Nov 12 20:46:53 2006
@@ -1,7 +1,7 @@
 <VisualStudioProject>
     <CSHARP
         ProjectType = "Local"
-        ProductVersion = "7.10.3077"
+        ProductVersion = "7.10.6030"
         SchemaVersion = "2.0"
         ProjectGuid = "{BBC8DA4A-EA88-41D9-8B93-929B8F3ADADE}"
     >
@@ -206,6 +206,11 @@
                 />
                 <File
                     RelPath = "Logging\LogSetting.cs"
+                    SubType = "Code"
+                    BuildAction = "Compile"
+                />
+                <File
+                    RelPath = "Logging\Impl\AbstractLogger.cs"
                     SubType = "Code"
                     BuildAction = "Compile"
                 />

Modified: ibatis/trunk/cs/mapper/IBatisNet.Common/Logging/Impl/AbstractLogger.cs
URL: http://svn.apache.org/viewvc/ibatis/trunk/cs/mapper/IBatisNet.Common/Logging/Impl/AbstractLogger.cs?view=diff&rev=474143&r1=474142&r2=474143
==============================================================================
--- ibatis/trunk/cs/mapper/IBatisNet.Common/Logging/Impl/AbstractLogger.cs (original)
+++ ibatis/trunk/cs/mapper/IBatisNet.Common/Logging/Impl/AbstractLogger.cs Sun Nov 12 20:46:53 2006
@@ -1,3 +1,28 @@
+#region Apache Notice
+/*****************************************************************************
+ * $Header: $
+ * $Revision: 474141 $
+ * $Date: 2006-11-12 23:43:37 -0500 (Sun, 12 Nov 2006) $
+ * 
+ * iBATIS.NET Data Mapper
+ * Copyright (C) 2004 - Gilles Bayon
+ *  
+ * 
+ * Licensed under the Apache License, Version 2.0 (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
+ * 
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * 
+ ********************************************************************************/
+#endregion
+
 using System;
 
 namespace IBatisNet.Common.Logging.Impl