| 1 |
// AprSharp, a wrapper library around the Apache Portable Runtime Library |
|---|
| 2 |
#region Copyright (C) 2004 SOFTEC sa. |
|---|
| 3 |
// |
|---|
| 4 |
// This library is free software; you can redistribute it and/or |
|---|
| 5 |
// modify it under the terms of the GNU Lesser General Public |
|---|
| 6 |
// License as published by the Free Software Foundation; either |
|---|
| 7 |
// version 2.1 of the License, or (at your option) any later version. |
|---|
| 8 |
// |
|---|
| 9 |
// This library is distributed in the hope that it will be useful, |
|---|
| 10 |
// but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 11 |
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 12 |
// Lesser General Public License for more details. |
|---|
| 13 |
// |
|---|
| 14 |
// You should have received a copy of the GNU Lesser General Public |
|---|
| 15 |
// License along with this library; if not, write to the Free Software |
|---|
| 16 |
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|---|
| 17 |
// |
|---|
| 18 |
// Sources, support options and lastest version of the complete library |
|---|
| 19 |
// is available from: |
|---|
| 20 |
// http://www.softec.st/AprSharp |
|---|
| 21 |
// |
|---|
| 22 |
// |
|---|
| 23 |
// Initial authors : |
|---|
| 24 |
// Denis Gervalle |
|---|
| 25 |
// Olivier Desaive |
|---|
| 26 |
#endregion |
|---|
| 27 |
// |
|---|
| 28 |
using System; |
|---|
| 29 |
using System.Reflection; |
|---|
| 30 |
using System.Runtime.CompilerServices; |
|---|
| 31 |
|
|---|
| 32 |
// Information about this assembly is defined by the following |
|---|
| 33 |
// attributes. |
|---|
| 34 |
// |
|---|
| 35 |
// change them to the information which is associated with the assembly |
|---|
| 36 |
// you compile. |
|---|
| 37 |
|
|---|
| 38 |
[assembly: AssemblyTitle("AprSharp, an APR wrapper")] |
|---|
| 39 |
[assembly: AssemblyDescription("A C# wrapper library around the Apache Portable Runtime Library")] |
|---|
| 40 |
[assembly: AssemblyConfiguration("")] |
|---|
| 41 |
[assembly: AssemblyCompany("SOFTEC sa")] |
|---|
| 42 |
[assembly: AssemblyProduct("AprSharp")] |
|---|
| 43 |
[assembly: AssemblyCopyright( |
|---|
| 44 |
@" Copyright 2004 by SOFTEC sa |
|---|
| 45 |
|
|---|
| 46 |
This library is free software; you can redistribute it and/or |
|---|
| 47 |
modify it under the terms of the GNU Lesser General Public |
|---|
| 48 |
License as published by the Free Software Foundation; either |
|---|
| 49 |
version 2.1 of the License, or (at your option) any later version. |
|---|
| 50 |
|
|---|
| 51 |
This library is distributed in the hope that it will be useful, |
|---|
| 52 |
but WITHOUT ANY WARRANTY; without even the implied warranty of |
|---|
| 53 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
|---|
| 54 |
Lesser General Public License for more details. |
|---|
| 55 |
|
|---|
| 56 |
You should have received a copy of the GNU Lesser General Public |
|---|
| 57 |
License along with this library; if not, write to the Free Software |
|---|
| 58 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA")] |
|---|
| 59 |
[assembly: AssemblyTrademark("")] |
|---|
| 60 |
[assembly: AssemblyCulture("")] |
|---|
| 61 |
|
|---|
| 62 |
// Mark assembly CLS Compliant (usable in other .NET languages) |
|---|
| 63 |
[assembly:CLSCompliant(true)] |
|---|
| 64 |
|
|---|
| 65 |
// The assembly version has following format : |
|---|
| 66 |
// |
|---|
| 67 |
// Major.Minor.Build.Revision |
|---|
| 68 |
// |
|---|
| 69 |
// You can specify all values by your own or you can build default build and revision |
|---|
| 70 |
// numbers with the '*' character (the default): |
|---|
| 71 |
|
|---|
| 72 |
[assembly: AssemblyVersion("1.0.*")] |
|---|
| 73 |
|
|---|
| 74 |
// The following attributes specify the key for the sign of your assembly. See the |
|---|
| 75 |
// .NET Framework documentation for more information about signing. |
|---|
| 76 |
// This is not required, if you don't want signing let these attributes like they're. |
|---|
| 77 |
[assembly: AssemblyDelaySign(false)] |
|---|
| 78 |
[assembly: AssemblyKeyFile("")] |
|---|