DsnIndy90.dpr 3.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. library DsnIndy90;
  2. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
  3. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
  4. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.Design.dll'}
  5. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  6. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Data.dll'}
  7. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Design.dll'}
  8. {%DelphiDotNetAssemblyCompiler '..\system\IndySystem90Net.dll'}
  9. {$R 'IdDsnPropEdBindingNET.TIdDsnPropEdBindingNET.resources' 'IdDsnPropEdBindingNET.resx'}
  10. uses
  11. System.Data,
  12. System.ComponentModel,
  13. System.ComponentModel.Design,
  14. System.Reflection,
  15. System.Runtime.InteropServices,
  16. IdDsnNETCompEditor in 'IdDsnNETCompEditor.pas',
  17. IdDsnCoreResourceStrings in 'IdDsnCoreResourceStrings.pas',
  18. IdDsnPropEdBindingNET in 'IdDsnPropEdBindingNET.pas' {IdDsnPropEdBindingNET.TIdDsnPropEdBindingNET: System.Windows.Forms.Form};
  19. [assembly: AssemblyTitle('')]
  20. [assembly: AssemblyDescription('')]
  21. [assembly: AssemblyConfiguration('')]
  22. [assembly: AssemblyCompany('')]
  23. [assembly: AssemblyProduct('')]
  24. [assembly: AssemblyCopyright('')]
  25. [assembly: AssemblyTrademark('')]
  26. [assembly: AssemblyCulture('')]
  27. //
  28. // Version information for an assembly consists of the following four values:
  29. //
  30. // Major Version
  31. // Minor Version
  32. // Build Number
  33. // Revision
  34. //
  35. // You can specify all the values or you can default the Revision and Build Numbers
  36. // by using the '*' as shown below:
  37. [assembly: AssemblyVersion('1.0.*')]
  38. //
  39. // In order to sign your assembly you must specify a key to use. Refer to the
  40. // Microsoft .NET Framework documentation for more information on assembly signing.
  41. //
  42. // Use the attributes below to control which key is used for signing.
  43. //
  44. // Notes:
  45. // (*) If no key is specified, the assembly is not signed.
  46. // (*) KeyName refers to a key that has been installed in the Crypto Service
  47. // Provider (CSP) on your machine. KeyFile refers to a file which contains
  48. // a key.
  49. // (*) If the KeyFile and the KeyName values are both specified, the
  50. // following processing occurs:
  51. // (1) If the KeyName can be found in the CSP, that key is used.
  52. // (2) If the KeyName does not exist and the KeyFile does exist, the key
  53. // in the KeyFile is installed into the CSP and used.
  54. // (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  55. // When specifying the KeyFile, the location of the KeyFile should be
  56. // relative to the project output directory. For example, if your KeyFile is
  57. // located in the project directory, you would specify the AssemblyKeyFile
  58. // attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
  59. // directory is the project directory (the default).
  60. // (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  61. // documentation for more information on this.
  62. //
  63. [assembly: AssemblyDelaySignAttribute(false)]
  64. [assembly: AssemblyKeyFileAttribute('')]
  65. [assembly: AssemblyKeyName('')]
  66. //
  67. // Use the attributes below to control the COM visibility of your assembly. By
  68. // default the entire assembly is visible to COM. Setting ComVisible to false
  69. // is the recommended default for your assembly. To then expose a class and interface
  70. // to COM set ComVisible to true on each one. It is also recommended to add a
  71. // Guid attribute.
  72. //
  73. [assembly: ComVisible(False)]
  74. //[assembly: Guid('')]
  75. //[assembly: TypeLibVersion(1, 0)]
  76. begin
  77. end.