Overriding Vidyano Settings

This information is still applicable to v6 but you should use the .NET core related configuration providers, so any of the configured providers can be used (appsettings.json, environment variables, user secrets, ...), the key to set will be Vidyano:Setting e.g. Vidyano:MicrosoftTranslatorAppId

Vidyano has always used 2 places to store settings, the web.config appSettings section for settings that required the application to restart, and the Settings repository table for settings that can be changed at runtime.

This new feature allows you to override the settings stored in the Settings repository table using the web.config appSettings section. This can be used for system settings and custom settings.

<appSettings>
  <add key="Vidyano.MicrosoftTranslatorAppId" value="xxx" />
</appSettings>

Overridden settings will be shown as read-only in the Management part.

Last updated

Was this helpful?