-
Notifications
You must be signed in to change notification settings - Fork 6
/
app.config
19 lines (19 loc) · 847 Bytes
/
app.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="RepairTasks.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v2.0.50727"/>
<supportedRuntime version="v4.0" />
</startup>
<userSettings>
<RepairTasks.Properties.Settings>
<setting name="HasBackedUp" serializeAs="String">
<value>False</value>
</setting>
</RepairTasks.Properties.Settings>
</userSettings>
</configuration>