You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4net-dev@logging.apache.org by bo...@apache.org on 2011/08/21 06:58:57 UTC

svn commit: r1159943 - /logging/log4net/trunk/src/AssemblyInfo.cs

Author: bodewig
Date: Sun Aug 21 04:58:57 2011
New Revision: 1159943

URL: http://svn.apache.org/viewvc?rev=1159943&view=rev
Log:
set AssemblyTitle properly for the builds targeting 4.0 and Client Profiles

Modified:
    logging/log4net/trunk/src/AssemblyInfo.cs

Modified: logging/log4net/trunk/src/AssemblyInfo.cs
URL: http://svn.apache.org/viewvc/logging/log4net/trunk/src/AssemblyInfo.cs?rev=1159943&r1=1159942&r2=1159943&view=diff
==============================================================================
--- logging/log4net/trunk/src/AssemblyInfo.cs (original)
+++ logging/log4net/trunk/src/AssemblyInfo.cs Sun Aug 21 04:58:57 2011
@@ -51,8 +51,18 @@ using System.Runtime.CompilerServices;
 [assembly: AssemblyTitle("Apache log4net for .NET Framework 1.0")]
 #elif (NET_1_1)
 [assembly: AssemblyTitle("Apache log4net for .NET Framework 1.1")]
+#elif (NET_4_0)
+#if CLIENT_PROFILE
+[assembly: AssemblyTitle("Apache log4net for .NET Framework 4.0 Client Profile")]
+#else
+[assembly: AssemblyTitle("Apache log4net for .NET Framework 4.0")]
+#endif // Client Profile
 #elif (NET_2_0)
+#if CLIENT_PROFILE
+[assembly: AssemblyTitle("Apache log4net for .NET Framework 3.5 Client Profile")]
+#else
 [assembly: AssemblyTitle("Apache log4net for .NET Framework 2.0")]
+#endif // Client Profile
 #elif (NETCF_1_0)
 [assembly: AssemblyTitle("Apache log4net for .NET Compact Framework 1.0")]
 #elif (NETCF_2_0)