1*aaf4ece6Schristos using System.Reflection; 2*aaf4ece6Schristos using System.Runtime.CompilerServices; 3*aaf4ece6Schristos 4*aaf4ece6Schristos // 5*aaf4ece6Schristos // General Information about an assembly is controlled through the following 6*aaf4ece6Schristos // set of attributes. Change these attribute values to modify the information 7*aaf4ece6Schristos // associated with an assembly. 8*aaf4ece6Schristos // 9*aaf4ece6Schristos [assembly: AssemblyTitle("DotZLib")] 10*aaf4ece6Schristos [assembly: AssemblyDescription(".Net bindings for ZLib compression dll 1.2.x")] 11*aaf4ece6Schristos [assembly: AssemblyConfiguration("")] 12*aaf4ece6Schristos [assembly: AssemblyCompany("Henrik Ravn")] 13*aaf4ece6Schristos [assembly: AssemblyProduct("")] 14*aaf4ece6Schristos [assembly: AssemblyCopyright("(c) 2004 by Henrik Ravn")] 15*aaf4ece6Schristos [assembly: AssemblyTrademark("")] 16*aaf4ece6Schristos [assembly: AssemblyCulture("")] 17*aaf4ece6Schristos 18*aaf4ece6Schristos // 19*aaf4ece6Schristos // Version information for an assembly consists of the following four values: 20*aaf4ece6Schristos // 21*aaf4ece6Schristos // Major Version 22*aaf4ece6Schristos // Minor Version 23*aaf4ece6Schristos // Build Number 24*aaf4ece6Schristos // Revision 25*aaf4ece6Schristos // 26*aaf4ece6Schristos // You can specify all the values or you can default the Revision and Build Numbers 27*aaf4ece6Schristos // by using the '*' as shown below: 28*aaf4ece6Schristos 29*aaf4ece6Schristos [assembly: AssemblyVersion("1.0.*")] 30*aaf4ece6Schristos 31*aaf4ece6Schristos // 32*aaf4ece6Schristos // In order to sign your assembly you must specify a key to use. Refer to the 33*aaf4ece6Schristos // Microsoft .NET Framework documentation for more information on assembly signing. 34*aaf4ece6Schristos // 35*aaf4ece6Schristos // Use the attributes below to control which key is used for signing. 36*aaf4ece6Schristos // 37*aaf4ece6Schristos // Notes: 38*aaf4ece6Schristos // (*) If no key is specified, the assembly is not signed. 39*aaf4ece6Schristos // (*) KeyName refers to a key that has been installed in the Crypto Service 40*aaf4ece6Schristos // Provider (CSP) on your machine. KeyFile refers to a file which contains 41*aaf4ece6Schristos // a key. 42*aaf4ece6Schristos // (*) If the KeyFile and the KeyName values are both specified, the 43*aaf4ece6Schristos // following processing occurs: 44*aaf4ece6Schristos // (1) If the KeyName can be found in the CSP, that key is used. 45*aaf4ece6Schristos // (2) If the KeyName does not exist and the KeyFile does exist, the key 46*aaf4ece6Schristos // in the KeyFile is installed into the CSP and used. 47*aaf4ece6Schristos // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility. 48*aaf4ece6Schristos // When specifying the KeyFile, the location of the KeyFile should be 49*aaf4ece6Schristos // relative to the project output directory which is 50*aaf4ece6Schristos // %Project Directory%\obj\<configuration>. For example, if your KeyFile is 51*aaf4ece6Schristos // located in the project directory, you would specify the AssemblyKeyFile 52*aaf4ece6Schristos // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")] 53*aaf4ece6Schristos // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework 54*aaf4ece6Schristos // documentation for more information on this. 55*aaf4ece6Schristos // 56*aaf4ece6Schristos [assembly: AssemblyDelaySign(false)] 57*aaf4ece6Schristos [assembly: AssemblyKeyFile("")] 58*aaf4ece6Schristos [assembly: AssemblyKeyName("")] 59