AssemblyInfo.cs 2.7 KB

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