root/trunk/AprSharp/dev/src/AssemblyInfo.cs

Revision 1, 1.5 kB (checked in by DenisG, 3 years ago)

Initial import

  • Property svn:eol-style set to native
Line 
1 //
2 // Softec
3 //
4 // Contact: Support@softec.st
5 //
6 // Designed by Denis Gervalle and Olivier Desaive
7 // Written by Denis Gervalle
8 //
9 // Copyright 2004 by SOFTEC. All rights reserved.
10 //
11 using System;
12 using System.Reflection;
13 using System.Runtime.CompilerServices;
14
15 // Information about this assembly is defined by the following
16 // attributes.
17 //
18 // change them to the information which is associated with the assembly
19 // you compile.
20
21 [assembly: AssemblyTitle("Wrapper classes for APR")]
22 [assembly: AssemblyDescription("Encapsulate APR pools and other APR utility classes")]
23 [assembly: AssemblyConfiguration("")]
24 [assembly: AssemblyCompany("SOFTEC sa")]
25 [assembly: AssemblyProduct("AprSharp")]
26 [assembly: AssemblyCopyright("Copyright 2004 by SOFTEC. All rights reserved.")]
27 [assembly: AssemblyTrademark("")]
28 [assembly: AssemblyCulture("")]
29
30 // Mark assembly CLS Compliant (usable in other .NET languages)
31 [assembly:CLSCompliant(true)]
32
33 // The assembly version has following format :
34 //
35 // Major.Minor.Build.Revision
36 //
37 // You can specify all values by your own or you can build default build and revision
38 // numbers with the '*' character (the default):
39
40 [assembly: AssemblyVersion("1.0.*")]
41
42 // The following attributes specify the key for the sign of your assembly. See the
43 // .NET Framework documentation for more information about signing.
44 // This is not required, if you don't want signing let these attributes like they're.
45 [assembly: AssemblyDelaySign(false)]
46 [assembly: AssemblyKeyFile("")]
Note: See TracBrowser for help on using the browser.