Skip to content

Commit

Permalink
Use local instead of roaming
Browse files Browse the repository at this point in the history
  • Loading branch information
MolotovCherry committed Nov 14, 2023
1 parent 22c66c0 commit 8cf2ec9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Virtual Display Driver Control/Common/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public interface IAppSettings : INotifyPropertyChanged {

public static class SettingsProvider {
public static IAppSettings Initialize() {
var jsonPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "VirtualDisplayDriver", "appsettings.json");
var jsonPath = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData), "VirtualDisplayDriver", "appsettings.json");

return new ConfigurationBuilder<IAppSettings>()
.UseJsonFile(jsonPath)
Expand Down

0 comments on commit 8cf2ec9

Please sign in to comment.