**** Merged from MCS ****
[mono-project.git] / mcs / class / Npgsql / Npgsql / AssemblyInfo.cs
blobbaf5971cbafa8e3cf905c584d57ce2ffb9ee7197
1 // AssemblyInfo.cs
2 //
3 // Author:
4 // Francisco Jr. (fxjrlists@yahoo.com.br)
5 //
6 // Copyright (C) 2002 The Npgsql Development Team
7 // npgsql-general@gborg.postgresql.org
8 // http://gborg.postgresql.org/project/npgsql/projdisplay.php
9 //
10 // This library is free software; you can redistribute it and/or
11 // modify it under the terms of the GNU Lesser General Public
12 // License as published by the Free Software Foundation; either
13 // version 2.1 of the License, or (at your option) any later version.
15 // This library is distributed in the hope that it will be useful,
16 // but WITHOUT ANY WARRANTY; without even the implied warranty of
17 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 // Lesser General Public License for more details.
20 // You should have received a copy of the GNU Lesser General Public
21 // License along with this library; if not, write to the Free Software
22 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 using System.Reflection;
27 using System.Runtime.CompilerServices;
29 // Information about this assembly is defined by the following
30 // attributes.
32 // change them to the information which is associated with the assembly
33 // you compile.
35 [assembly: AssemblyTitle("Npgsql - .Net Data Provider for PostgreSQL")]
36 [assembly: AssemblyDescription(".Net Data Provider for PostgreSQL")]
37 [assembly: AssemblyConfiguration("")]
38 [assembly: AssemblyCompany("")]
39 [assembly: AssemblyProduct("")]
40 [assembly: AssemblyCopyright("The Npgsql Development Team")]
41 [assembly: AssemblyTrademark("")]
42 [assembly: AssemblyCulture("")]
44 // The assembly version has following format :
46 // Major.Minor.Build.Revision
48 // You can specify all values by your own or you can build default build and revision
49 // numbers with the '*' character (the default):
51 #if (NET_2_0)
52 [assembly: AssemblyVersion ("2.0.3600.0")]
53 #elif (NET_1_1)
54 [assembly: AssemblyVersion ("1.0.5000.0")]
55 #else
56 [assembly: AssemblyVersion ("1.0.3300.0")]
57 #endif
59 // The following attributes specify the key for the sign of your assembly. See the
60 // .NET Framework documentation for more information about signing.
61 // This is not required, if you don't want signing let these attributes like they're.
63 // FIXME: We don't strongname corlib.dll right now, so we can't strongname this dll.
64 // This is only a problem on windows, where we have the option of linking against
65 // mscorlib.dll. But there are other libraries that need to link against our corlib,
66 // and in general always linking against the mono corlib seems like the right thing
67 // to do.
69 [assembly: AssemblyDelaySign (true)]
70 [assembly: AssemblyKeyFile ("Npgsql/Npgsql.pub")]