-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.config
22 lines (22 loc) · 1 KB
/
app.config
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?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="Wolf.Properties.Settings" 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.6.2"/></startup>
<runtime>
<legacyCorruptedStateExceptionsPolicy enabled="true"/>
</runtime>
<userSettings>
<Wolf.Properties.Settings>
<setting name="IGNORE_WINDEF_MESSAGE" serializeAs="String">
<value>False</value>
</setting>
<setting name="IGNORE_WINDOWS_FIREWALL" serializeAs="String">
<value>False</value>
</setting>
</Wolf.Properties.Settings>
</userSettings>
</configuration>