This repository was archived by the owner on Jun 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathPackageSettingsGen.cs
120 lines (106 loc) · 3.62 KB
/
PackageSettingsGen.cs
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
// This is an automatically generated file, based on settings.json and PackageSettingsGen.tt
/* settings.json content:
{
"settings": [
{
"name": "CollectMetrics",
"type": "bool",
"default": "true"
},
{
"name": "UIState",
"type": "object",
"typename": "UIState",
"default": "null"
},
{
"name": "HideTeamExplorerWelcomeMessage",
"type": "bool",
"default": "false"
},
{
"name": "EnableTraceLogging",
"type": "bool",
"default": "false"
},
{
"name": "DefaultRepositoryLocation",
"type": "string",
"default": "null"
},
{
"name": "DefaultRepositoryLayout",
"type": "string",
"default": "null"
}
]
}
*/
using GitHub.Settings;
using GitHub.Primitives;
using GitHub.VisualStudio.Helpers;
namespace GitHub.VisualStudio.Settings {
public partial class PackageSettings : NotificationAwareObject, IPackageSettings
{
bool collectMetrics;
public bool CollectMetrics
{
get { return collectMetrics; }
set { collectMetrics = value; this.RaisePropertyChange(); }
}
bool forkButton;
public bool ForkButton
{
get { return forkButton; }
set { forkButton = value; this.RaisePropertyChange(); }
}
UIState uIState;
public UIState UIState
{
get { return uIState; }
set { uIState = value; this.RaisePropertyChange(); }
}
bool hideTeamExplorerWelcomeMessage;
public bool HideTeamExplorerWelcomeMessage
{
get { return hideTeamExplorerWelcomeMessage; }
set { hideTeamExplorerWelcomeMessage = value; this.RaisePropertyChange(); }
}
bool enableTraceLogging;
public bool EnableTraceLogging
{
get { return enableTraceLogging; }
set { enableTraceLogging = value; this.RaisePropertyChange(); }
}
string defaultRepositoryLocation;
public string DefaultRepositoryLocation
{
get { return defaultRepositoryLocation; }
set { defaultRepositoryLocation = value; this.RaisePropertyChange(); }
}
string defaultRepositoryLayout;
public string DefaultRepositoryLayout
{
get { return defaultRepositoryLayout; }
set { defaultRepositoryLayout = value; this.RaisePropertyChange(); }
}
void LoadSettings()
{
CollectMetrics = (bool)settingsStore.Read("CollectMetrics", true);
UIState = SimpleJson.DeserializeObject<UIState>((string)settingsStore.Read("UIState", "{}"));
HideTeamExplorerWelcomeMessage = (bool)settingsStore.Read("HideTeamExplorerWelcomeMessage", false);
EnableTraceLogging = (bool)settingsStore.Read("EnableTraceLogging", false);
DefaultRepositoryLocation = (string)settingsStore.Read("DefaultRepositoryLocation", null);
DefaultRepositoryLayout = (string)settingsStore.Read("DefaultRepositoryLayout", null);
}
void SaveSettings()
{
settingsStore.Write("CollectMetrics", CollectMetrics);
settingsStore.Write("UIState", SimpleJson.SerializeObject(UIState));
settingsStore.Write("HideTeamExplorerWelcomeMessage", HideTeamExplorerWelcomeMessage);
settingsStore.Write("EnableTraceLogging", EnableTraceLogging);
settingsStore.Write("DefaultRepositoryLocation", DefaultRepositoryLocation);
settingsStore.Write("DefaultRepositoryLayout", DefaultRepositoryLayout);
}
}
}