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 ni...@apache.org on 2006/03/07 21:09:38 UTC

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

Author: nicko
Date: Tue Mar  7 12:09:36 2006
New Revision: 383994

URL: http://svn.apache.org/viewcvs?rev=383994&view=rev
Log:
Fixed regression introduced in previous commit. .NET 2.0 C# compiler does not use AssemblyKeyFile attribute to strong name assembly.

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

Modified: logging/log4net/trunk/src/AssemblyInfo.cs
URL: http://svn.apache.org/viewcvs/logging/log4net/trunk/src/AssemblyInfo.cs?rev=383994&r1=383993&r2=383994&view=diff
==============================================================================
--- logging/log4net/trunk/src/AssemblyInfo.cs (original)
+++ logging/log4net/trunk/src/AssemblyInfo.cs Tue Mar  7 12:09:36 2006
@@ -110,7 +110,7 @@
 //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
 //       documentation for more information on this.
 //
-#if STRONG && (CLI_1_0 || NET_1_0 || NET_1_1 || NET_2_0 || NETCF_1_0 || SSCLI)
+#if STRONG && (CLI_1_0 || NET_1_0 || NET_1_1 || NETCF_1_0 || SSCLI)
 [assembly: AssemblyDelaySign(false)]
 [assembly: AssemblyKeyFile(@"..\..\..\log4net.snk")]
 #endif