-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappsettings.json
More file actions
36 lines (36 loc) · 853 Bytes
/
appsettings.json
File metadata and controls
36 lines (36 loc) · 853 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"ApplicationSettings": {
"ApplicationName": "WPF MVVM Application",
"Version": "1.0.0",
"Theme": "Light",
"Language": "en-US",
"EnableAutoSave": true,
"AutoSaveIntervalMinutes": 5,
"MaxRecentFiles": 10
},
"WindowSettings": {
"RememberWindowPosition": true,
"StartupWindowState": "Normal",
"DefaultWidth": 1024,
"DefaultHeight": 768
},
"Logging": {
"LogLevel": {
"Default": "Information",
"System": "Warning",
"Microsoft": "Warning"
},
"EnableFileLogging": true,
"LogFilePath": "logs/app.log",
"MaxLogFileSize": 10485760,
"MaxLogFiles": 5
},
"ConnectionStrings": {
"DefaultConnection": "Data Source=app.db;Version=3;"
},
"Features": {
"EnableExperimentalFeatures": false,
"EnableDeveloperMode": false,
"EnableTelemetry": false
}
}