IniFilesPath

ide.<ProgrammingLanguage>.IniFilesPath = …

The search for INI-Files should be limited to a specific single folder.

Entry in an LFET.Project.ini-file:
ide.Java.IniFilesPath = ${project.root}/ini
Entry in an LFET.Project.yaml-file:
ide.Java:
  Enabled: true

  IniFiles:
    Path: ${project.root}/ini
This para­meter can have a positive impact on the gene­ration speed as this suppresses the search for INI files.

Suppressing the use of INI files

By entering "", the use of and search for INI files can be suppressed completely.

Entry in an LFET.Project.ini-file:
ide.Java.IniFilesPath = ""
Entry in an LFET.Project.yaml-file:
ide.Java:
  Enabled: true

  IniFiles:
    Path: '""'