DsnIndy.dpr 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. library DsnIndy;
  2. uses
  3. SysUtils,
  4. Classes,
  5. System.Reflection,
  6. System.Runtime.InteropServices;
  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('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. For example, if your KeyFile is
  45. // located in the project directory, you would specify the AssemblyKeyFile
  46. // attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
  47. // directory is the project directory (the default).
  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('')]
  54. //
  55. // Use the attributes below to control the COM visibility of your assembly. By
  56. // default the entire assembly is visible to COM. Setting ComVisible to false
  57. // is the recommended default for your assembly. To then expose a class and interface
  58. // to COM set ComVisible to true on each one. It is also recommended to add a
  59. // Guid attribute.
  60. //
  61. [assembly: ComVisible(False)]
  62. //[assembly: Guid('')]
  63. //[assembly: TypeLibVersion(1, 0)]
  64. begin
  65. end.