Question: Saving user settings to LocalSharedFolder
See original GitHub issueThis is not an issue ,
I’m using SettingsService, but how can I save user settings to LocalSharedFolder?
_appSettings = new MyAppSettings(SettingsService.Create(SettingsStrategies.Local, nameof(MyAppSettings)));
that interface settings have bool , string , int , etc. it stores the settings of my app , and it is stored in : C:\Users%username%\AppData\Local\Packages\AppPackage\Settings\settings.dat
I want it to save in the app SharedFolder , how can i create my settings to my SharedFolder location?
NOTE: I want all machine users to have same settings on my app , there is a a thread how to do that , and I was able to do it on my db , different users shares one/same db , but not settings ,thread: https://blogs.msdn.microsoft.com/notime/2016/03/04/sharing-data-between-users-of-a-universal-app/
Issue Analytics
- State:
- Created 7 years ago
- Comments:19 (10 by maintainers)
@NicoTiing working on a rough attempt…
It’s such an extreme use case and I haven’t really looked at much past the initial comment. Reason it isn’t something I would ever entertain