github.com/remobjects/goldbaselibrary@v0.0.0-20230924164425-d458680a936b/Source/GoldAspect/Properties/AssemblyInfo.pas (about)

     1  namespace GoldAspect;
     2  
     3  interface
     4  
     5  uses
     6    System.Reflection,
     7    System.Resources,
     8    System.Runtime.InteropServices;
     9  
    10    [assembly: AssemblyTitle('')]
    11    [assembly: AssemblyDescription('')]
    12    [assembly: AssemblyConfiguration('')]
    13    [assembly: AssemblyCompany('')]
    14    [assembly: AssemblyProduct('')]
    15    [assembly: AssemblyCopyright('')]
    16    [assembly: AssemblyTrademark('')]
    17    [assembly: AssemblyCulture('')]
    18    [assembly: AssemblyVersion('1.0.0.1')]
    19    [assembly: NeutralResourcesLanguage('')]
    20    [assembly: ComVisible(false)]
    21  
    22    //
    23    // In order to sign your assembly you must specify a key to use. Refer to the
    24    // Microsoft .NET Framework documentation for more information on assembly signing.
    25    //
    26    // Use the attributes below to control which key is used for signing.
    27    //
    28    // Notes:
    29    //   (*) If no key is specified, the assembly is not signed.
    30    //   (*) KeyName refers to a key that has been installed in the Crypto Service
    31    //       Provider (CSP) on your machine. KeyFile refers to a file which contains
    32    //       a key.
    33    //   (*) If the KeyFile and the KeyName values are both specified, the
    34    //       following processing occurs:
    35    //       (1) If the KeyName can be found in the CSP, that key is used.
    36    //       (2) If the KeyName does not exist and the KeyFile does exist, the key
    37    //           in the KeyFile is installed into the CSP and used.
    38    //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
    39    //       When specifying the KeyFile, the location of the KeyFile should be
    40    //       relative to the project output directory, which in Oxygene by default is the
    41    //       same as the project directory. For example, if your KeyFile is
    42    //       located in the project directory, you would specify the AssemblyKeyFile
    43    //       attribute as [assembly: AssemblyKeyFile('mykey.snk')]
    44    //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
    45    //       documentation for more information on this.
    46    //
    47    [assembly: AssemblyDelaySign(false)]
    48    [assembly: AssemblyKeyFile('')]
    49    [assembly: AssemblyKeyName('RemObjectsSoftware')]
    50  
    51  implementation
    52  
    53  end.