home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / vbasic / Data / Utils / XZipNet.msi / Data1.cab / AssemblyInfo.cs4 < prev    next >
Encoding:
Text File  |  2002-02-04  |  2.6 KB  |  66 lines

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