Application Settings

Control the application default behaviour

There are two files which will be merged on start-up, where the workspace settings (if they exist) override the default settings from the application's binary directory:

  • {AppBinDir}\appsettings.json

  • {WorkspaceDir}\appsettings.json

{
  "AppSettings": {
    "TemplateMaxDataSetCount": 0,
    "CreateProcessPropertiesCsv" : false,
    "RenderVersioned" : false,
    "DocRoot" : "path"
  }
}

CreateProcessPropertiesCsv

If set to true a prop.{ProcessComponentId~version}.csv will be created for each process. This file contains a list of all used properties with this process.

This is extremely useful when you want to see which property is used where:

DocRoot

Specify a path where all documentation is written to, by default, unless it is overruled by a command-line argument. Target Path Resolution.

Last updated