You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, it is not possible to save settings to the ShellSettings with a key that has more sections. E.g. saving TestSection:TestSubSection:TestKey: "TestValue" is not possible. Because of this in ShellSettingsManager:
Okay, locally I did a very simple first draft that works, see #14490 where in ShellSettingsManager I used AsEnumerable() on the ShellConfiguration because it keeps for each key the full section path. This may give you an idea to make your implementation simpler before this PR may be merged.
For now configs are saved in a flat way, would need a json converter, but I think that's okay, this file is not intended to be edited directly, it can still be but it will be reformatted in a flat way on the next save.
Currently, it is not possible to save settings to the ShellSettings with a key that has more sections. E.g. saving
TestSection:TestSubSection:TestKey: "TestValue"
is not possible. Because of this in ShellSettingsManager:So basically when calling this example controller:
You will get this as a result:
Is there any specific reason why only keys without children are possible to save currently?
The text was updated successfully, but these errors were encountered: