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