Chris@4: using System.Reflection; Chris@4: using System.Runtime.CompilerServices; Chris@4: Chris@4: // Chris@4: // General Information about an assembly is controlled through the following Chris@4: // set of attributes. Change these attribute values to modify the information Chris@4: // associated with an assembly. Chris@4: // Chris@4: [assembly: AssemblyTitle("DotZLib")] Chris@4: [assembly: AssemblyDescription(".Net bindings for ZLib compression dll 1.2.x")] Chris@4: [assembly: AssemblyConfiguration("")] Chris@4: [assembly: AssemblyCompany("Henrik Ravn")] Chris@4: [assembly: AssemblyProduct("")] Chris@4: [assembly: AssemblyCopyright("(c) 2004 by Henrik Ravn")] Chris@4: [assembly: AssemblyTrademark("")] Chris@4: [assembly: AssemblyCulture("")] Chris@4: Chris@4: // Chris@4: // Version information for an assembly consists of the following four values: Chris@4: // Chris@4: // Major Version Chris@4: // Minor Version Chris@4: // Build Number Chris@4: // Revision Chris@4: // Chris@4: // You can specify all the values or you can default the Revision and Build Numbers Chris@4: // by using the '*' as shown below: Chris@4: Chris@4: [assembly: AssemblyVersion("1.0.*")] Chris@4: Chris@4: // Chris@4: // In order to sign your assembly you must specify a key to use. Refer to the Chris@4: // Microsoft .NET Framework documentation for more information on assembly signing. Chris@4: // Chris@4: // Use the attributes below to control which key is used for signing. Chris@4: // Chris@4: // Notes: Chris@4: // (*) If no key is specified, the assembly is not signed. Chris@4: // (*) KeyName refers to a key that has been installed in the Crypto Service Chris@4: // Provider (CSP) on your machine. KeyFile refers to a file which contains Chris@4: // a key. Chris@4: // (*) If the KeyFile and the KeyName values are both specified, the Chris@4: // following processing occurs: Chris@4: // (1) If the KeyName can be found in the CSP, that key is used. Chris@4: // (2) If the KeyName does not exist and the KeyFile does exist, the key Chris@4: // in the KeyFile is installed into the CSP and used. Chris@4: // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. Chris@4: // When specifying the KeyFile, the location of the KeyFile should be Chris@4: // relative to the project output directory which is Chris@4: // %Project Directory%\obj\. For example, if your KeyFile is Chris@4: // located in the project directory, you would specify the AssemblyKeyFile Chris@4: // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] Chris@4: // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework Chris@4: // documentation for more information on this. Chris@4: // Chris@4: [assembly: AssemblyDelaySign(false)] Chris@4: [assembly: AssemblyKeyFile("")] Chris@4: [assembly: AssemblyKeyName("")]