1275793eaSopenharmony_ciusing System.Reflection;
2275793eaSopenharmony_ciusing System.Runtime.CompilerServices;
3275793eaSopenharmony_ci
4275793eaSopenharmony_ci//
5275793eaSopenharmony_ci// General Information about an assembly is controlled through the following
6275793eaSopenharmony_ci// set of attributes. Change these attribute values to modify the information
7275793eaSopenharmony_ci// associated with an assembly.
8275793eaSopenharmony_ci//
9275793eaSopenharmony_ci[assembly: AssemblyTitle("DotZLib")]
10275793eaSopenharmony_ci[assembly: AssemblyDescription(".Net bindings for ZLib compression dll 1.2.x")]
11275793eaSopenharmony_ci[assembly: AssemblyConfiguration("")]
12275793eaSopenharmony_ci[assembly: AssemblyCompany("Henrik Ravn")]
13275793eaSopenharmony_ci[assembly: AssemblyProduct("")]
14275793eaSopenharmony_ci[assembly: AssemblyCopyright("(c) 2004 by Henrik Ravn")]
15275793eaSopenharmony_ci[assembly: AssemblyTrademark("")]
16275793eaSopenharmony_ci[assembly: AssemblyCulture("")]
17275793eaSopenharmony_ci
18275793eaSopenharmony_ci//
19275793eaSopenharmony_ci// Version information for an assembly consists of the following four values:
20275793eaSopenharmony_ci//
21275793eaSopenharmony_ci//      Major Version
22275793eaSopenharmony_ci//      Minor Version
23275793eaSopenharmony_ci//      Build Number
24275793eaSopenharmony_ci//      Revision
25275793eaSopenharmony_ci//
26275793eaSopenharmony_ci// You can specify all the values or you can default the Revision and Build Numbers
27275793eaSopenharmony_ci// by using the '*' as shown below:
28275793eaSopenharmony_ci
29275793eaSopenharmony_ci[assembly: AssemblyVersion("1.0.*")]
30275793eaSopenharmony_ci
31275793eaSopenharmony_ci//
32275793eaSopenharmony_ci// In order to sign your assembly you must specify a key to use. Refer to the
33275793eaSopenharmony_ci// Microsoft .NET Framework documentation for more information on assembly signing.
34275793eaSopenharmony_ci//
35275793eaSopenharmony_ci// Use the attributes below to control which key is used for signing.
36275793eaSopenharmony_ci//
37275793eaSopenharmony_ci// Notes:
38275793eaSopenharmony_ci//   (*) If no key is specified, the assembly is not signed.
39275793eaSopenharmony_ci//   (*) KeyName refers to a key that has been installed in the Crypto Service
40275793eaSopenharmony_ci//       Provider (CSP) on your machine. KeyFile refers to a file which contains
41275793eaSopenharmony_ci//       a key.
42275793eaSopenharmony_ci//   (*) If the KeyFile and the KeyName values are both specified, the
43275793eaSopenharmony_ci//       following processing occurs:
44275793eaSopenharmony_ci//       (1) If the KeyName can be found in the CSP, that key is used.
45275793eaSopenharmony_ci//       (2) If the KeyName does not exist and the KeyFile does exist, the key
46275793eaSopenharmony_ci//           in the KeyFile is installed into the CSP and used.
47275793eaSopenharmony_ci//   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
48275793eaSopenharmony_ci//       When specifying the KeyFile, the location of the KeyFile should be
49275793eaSopenharmony_ci//       relative to the project output directory which is
50275793eaSopenharmony_ci//       %Project Directory%\obj\<configuration>. For example, if your KeyFile is
51275793eaSopenharmony_ci//       located in the project directory, you would specify the AssemblyKeyFile
52275793eaSopenharmony_ci//       attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
53275793eaSopenharmony_ci//   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
54275793eaSopenharmony_ci//       documentation for more information on this.
55275793eaSopenharmony_ci//
56275793eaSopenharmony_ci[assembly: AssemblyDelaySign(false)]
57275793eaSopenharmony_ci[assembly: AssemblyKeyFile("")]
58275793eaSopenharmony_ci[assembly: AssemblyKeyName("")]
59