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