Click or drag to resize

Vishnu.exe.config.user

The file Vishnu.exe.config.user is the central point for your own Vishnu-Settings. Here you will find some preset parameters. You can change or delete them but also add your own ones. You will find the Vishnu.exe.config.user by default in the path %LOCALAPPDATA%\Vishnu\Vishnu.exe.config.user, where LOCALAPPDATA is a setting of the Windows environment and usually refers to C:\Users\<User>\AppData\Local.

Example of a setting: <add key="Job" value="DemoJobs\Simple\CheckAll">

Hinweis  Note

See the page Configuration and parameters for more options for setting Vishnu-parameters permanently or temporarily.

Vishnu.exe.config.user after installation

This is what the configuration file looks like directly after the first start of Vishnu:

Vishnu.exe.config.user
<?xml version="1.0"?>
<configuration>
  <appSettings>
    <!-- Insert user application and configured property settings here -->
    <!-- Example: <add key="settingName" value="settingValue"/> -->
    <add key="Demo mode" value="true"/>
    <add key="UserParameterReaderPath" value="%UserAssemblyDirectory%\DemoParameterProvider.dll" />
    <add key="DumpAppSettings" value="true"/>
    <!-- add key="KillWorkingDirectoryAtShutdown" value="true"/ -->
    <add key="Autostart" value="true"/>
    <add key="Job" value="DemoJobs\Simple\CheckAll"/>
  </appSettings>
</configuration>
See also