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