|
@@ -23,34 +23,34 @@ public enum ConfigLocations
|
|
|
Default = 0b_0000_0001,
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Global settings in the current directory (e.g. <c>./.tui/config.json</c>).
|
|
|
+ /// App resources (e.g. <c>MyApp.Resources.config.json</c>).
|
|
|
/// </summary>
|
|
|
- GlobalCurrent = 0b_0000_0010,
|
|
|
+ AppResources = 0b_0000_0010,
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Global settings in the home directory (e.g. <c>~/.tui/config.json</c>).
|
|
|
+ /// Settings in the <see cref="ConfigurationManager.RuntimeConfig"/> static property.
|
|
|
/// </summary>
|
|
|
- GlobalHome = 0b_0000_0100,
|
|
|
+ Runtime = 0b_0000_0100,
|
|
|
|
|
|
/// <summary>
|
|
|
- /// App resources (e.g. <c>MyApp.Resources.config.json</c>).
|
|
|
+ /// Global settings in the current directory (e.g. <c>./.tui/config.json</c>).
|
|
|
/// </summary>
|
|
|
- AppResources = 0b_0000_1000,
|
|
|
+ GlobalCurrent = 0b_0000_1000,
|
|
|
|
|
|
/// <summary>
|
|
|
- /// App settings in the current directory (e.g. <c>./.tui/MyApp.config.json</c>).
|
|
|
+ /// Global settings in the home directory (e.g. <c>~/.tui/config.json</c>).
|
|
|
/// </summary>
|
|
|
- AppCurrent = 0b_0001_0000,
|
|
|
+ GlobalHome = 0b_0001_0000,
|
|
|
|
|
|
/// <summary>
|
|
|
- /// App settings in the home directory (e.g. <c>~/.tui/MyApp.config.json</c>).
|
|
|
+ /// App settings in the current directory (e.g. <c>./.tui/MyApp.config.json</c>).
|
|
|
/// </summary>
|
|
|
- AppHome = 0b_0010_0000,
|
|
|
+ AppCurrent = 0b_0010_0000,
|
|
|
|
|
|
/// <summary>
|
|
|
- /// Settings in the <see cref="ConfigurationManager.RuntimeConfig"/> static property.
|
|
|
+ /// App settings in the home directory (e.g. <c>~/.tui/MyApp.config.json</c>).
|
|
|
/// </summary>
|
|
|
- Runtime = 0b_0100_0000,
|
|
|
+ AppHome = 0b_0100_0000,
|
|
|
|
|
|
/// <summary>This constant is a combination of all locations</summary>
|
|
|
All = 0b_1111_1111
|