/src/UnitTests/AssemblyInfo.cs

http://github.com/philiplaureano/LinFu · C# · 59 lines · 13 code · 6 blank · 40 comment · 0 complexity · 610264e6c2bac5643c7356956fdb7842 MD5 · raw file

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