-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use config.json file to store application settings
- Loading branch information
1 parent
104cb12
commit baab12a
Showing
6 changed files
with
94 additions
and
189 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<configuration> | ||
<configSections> | ||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" > | ||
<section name="Mario_Kart_Wii_Rich_Presence_Redux.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" /> | ||
</sectionGroup> | ||
</configSections> | ||
<startup> | ||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2" /> | ||
</startup> | ||
<userSettings> | ||
<Mario_Kart_Wii_Rich_Presence_Redux.My.MySettings> | ||
<setting name="startUrl" serializeAs="String"> | ||
<value>https://wiimmfi.de/stats/mkw/room/p1</value> | ||
</setting> | ||
<setting name="shareBtn" serializeAs="String"> | ||
<value>True</value> | ||
</setting> | ||
<setting name="addText" serializeAs="String"> | ||
<value>0000-0000-0000</value> | ||
</setting> | ||
<setting name="useOwnApp" serializeAs="String"> | ||
<value>False</value> | ||
</setting> | ||
<setting name="userAppId" serializeAs="String"> | ||
<value /> | ||
</setting> | ||
<setting name="useTrackState" serializeAs="String"> | ||
<value>False</value> | ||
</setting> | ||
<setting name="useTextDetails" serializeAs="String"> | ||
<value>False</value> | ||
</setting> | ||
<setting name="useCustomCourseImages" serializeAs="String"> | ||
<value>False</value> | ||
</setting> | ||
</Mario_Kart_Wii_Rich_Presence_Redux.My.MySettings> | ||
</userSettings> | ||
</configuration> |
2 changes: 1 addition & 1 deletion
2
Mario Kart Wii Rich Presence Redux/My Project/Application.Designer.vb
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
96 changes: 0 additions & 96 deletions
96
Mario Kart Wii Rich Presence Redux/My Project/Settings.Designer.vb
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
29 changes: 2 additions & 27 deletions
29
Mario Kart Wii Rich Presence Redux/My Project/Settings.settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,5 @@ | ||
<?xml version='1.0' encoding='utf-8'?> | ||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="My" GeneratedClassName="MySettings" UseMySettingsClassName="true"> | ||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" UseMySettingsClassName="true"> | ||
<Profiles /> | ||
<Settings> | ||
<Setting Name="startUrl" Type="System.Uri" Scope="User"> | ||
<Value Profile="(Default)">https://wiimmfi.de/stats/mkw/room/p1</Value> | ||
</Setting> | ||
<Setting Name="shareBtn" Type="System.Boolean" Scope="User"> | ||
<Value Profile="(Default)">True</Value> | ||
</Setting> | ||
<Setting Name="addText" Type="System.String" Scope="User"> | ||
<Value Profile="(Default)">0000-0000-0000</Value> | ||
</Setting> | ||
<Setting Name="useOwnApp" Type="System.Boolean" Scope="User"> | ||
<Value Profile="(Default)">False</Value> | ||
</Setting> | ||
<Setting Name="userAppId" Type="System.String" Scope="User"> | ||
<Value Profile="(Default)" /> | ||
</Setting> | ||
<Setting Name="useTrackState" Type="System.Boolean" Scope="User"> | ||
<Value Profile="(Default)">False</Value> | ||
</Setting> | ||
<Setting Name="useTextDetails" Type="System.Boolean" Scope="User"> | ||
<Value Profile="(Default)">False</Value> | ||
</Setting> | ||
<Setting Name="useCustomCourseImages" Type="System.Boolean" Scope="User"> | ||
<Value Profile="(Default)">False</Value> | ||
</Setting> | ||
</Settings> | ||
<Settings /> | ||
</SettingsFile> |
Oops, something went wrong.