IdAssemblyInfo.pas 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. { $HDR$}
  2. {**********************************************************************}
  3. { Unit archived using Team Coherence }
  4. { Team Coherence is Copyright 2002 by Quality Software Components }
  5. { }
  6. { For further information / comments, visit our WEB site at }
  7. { http://www.TeamCoherence.com }
  8. {**********************************************************************}
  9. {}
  10. { $Log: 116136: IdAssemblyInfo.pas
  11. {
  12. { Rev 1.1 3/3/2005 7:45:46 PM JPMugaas
  13. { Various fixes.
  14. }
  15. {
  16. { Rev 1.0 3/3/2005 4:45:30 PM JPMugaas
  17. { Version info templates for some files.
  18. }
  19. {
  20. { Rev 1.0 2004.02.03 2:40:36 PM czhower
  21. { Move
  22. }
  23. {
  24. { Rev 1.0 2004.01.20 12:27:00 AM czhower
  25. { Initial checkin
  26. }
  27. unit IdAssemblyInfo;
  28. interface
  29. uses
  30. System.Reflection, System.Runtime.CompilerServices;
  31. //
  32. // General Information about an assembly is controlled through the following
  33. // set of attributes. Change these attribute values to modify the information
  34. // associated with an assembly.
  35. //
  36. [assembly: AssemblyTitle('Indy')]
  37. [assembly: AssemblyDescription('Internet Direct (Indy) 10.6.3 for Visual Studio .NET')]
  38. [assembly: AssemblyConfiguration('')]
  39. [assembly: AssemblyCompany('Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew')]
  40. [assembly: AssemblyProduct('Indy for Microsoft .NET Framework')]
  41. [assembly: AssemblyCopyright('Copyright © 1993 - 2024 Chad Z. Hower a.k.a Kudzu and the Indy Pit Crew')]
  42. [assembly: AssemblyTrademark('')]
  43. [assembly: AssemblyCulture('')]
  44. //
  45. // Version information for an assembly consists of the following four values:
  46. //
  47. // Major Version
  48. // Minor Version
  49. // Build Number
  50. // Revision
  51. //
  52. // You can specify all the values or you can default the Revision and Build Numbers
  53. // by using the '*' as shown below:
  54. [assembly: AssemblyVersion('10.6.3.*')]
  55. //
  56. // In order to sign your assembly you must specify a key to use. Refer to the
  57. // Microsoft .NET Framework documentation for more information on assembly signing.
  58. //
  59. // Use the attributes below to control which key is used for signing.
  60. //
  61. // Notes:
  62. // (*) If no key is specified, the assembly is not signed.
  63. // (*) KeyName refers to a key that has been installed in the Crypto Service
  64. // Provider (CSP) on your machine. KeyFile refers to a file which contains
  65. // a key.
  66. // (*) If the KeyFile and the KeyName values are both specified, the
  67. // following processing occurs:
  68. // (1) If the KeyName can be found in the CSP, that key is used.
  69. // (2) If the KeyName does not exist and the KeyFile does exist, the key
  70. // in the KeyFile is installed into the CSP and used.
  71. // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  72. // When specifying the KeyFile, the location of the KeyFile should be
  73. // relative to the project output directory which is
  74. // %Project Directory%\bin\<configuration>. For example, if your KeyFile is
  75. // located in the project directory, you would specify the AssemblyKeyFile
  76. // attribute as [assembly: AssemblyKeyFile('..\\..\\mykey.snk')]
  77. // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  78. // documentation for more information on this.
  79. //
  80. [assembly: AssemblyDelaySignAttribute(true)]
  81. [assembly: AssemblyKeyFileAttribute('Indy.snk')]
  82. [assembly: AssemblyKeyName('')]
  83. implementation
  84. end.