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