AssemblyInfo.cs 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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("Spart Library")]
  9. [assembly: AssemblyDescription("A parser generation framework for C#")]
  10. [assembly: AssemblyConfiguration("")]
  11. [assembly: AssemblyCompany("Jonathan de Halleux")]
  12. [assembly: AssemblyProduct("Spart")]
  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 which is
  46. // %Project Directory%\obj\<configuration>. For example, if your KeyFile is
  47. // located in the project directory, you would specify the AssemblyKeyFile
  48. // attribute as [assembly: AssemblyKeyFile("..\\..\\mykey.snk")]
  49. // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  50. // documentation for more information on this.
  51. //
  52. [assembly: AssemblyDelaySign(false)]
  53. [assembly: AssemblyKeyFile("")]
  54. [assembly: AssemblyKeyName("")]