forked from Grabacr07/KanColleViewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.config
57 lines (56 loc) · 2.49 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
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<sectionGroup name="applicationSettings" type="System.Configuration.ApplicationSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="Grabacr07.KanColleViewer.Properties.Settings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</sectionGroup>
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<applicationSettings>
<Grabacr07.KanColleViewer.Properties.Settings>
<setting name="LocalProxyPort" serializeAs="String">
<value>37564</value>
</setting>
<setting name="KanColleUrl" serializeAs="String">
<value>http://www.dmm.com/netgame/social/application/-/detail/=/app_id=854854/</value>
</setting>
<setting name="OverrideStyleSheet" serializeAs="String">
<value>body {
margin:0;
overflow:hidden
}
#game_frame {
position:fixed;
left:50%;
top:-16px;
margin-left:-450px;
z-index:1
}</value>
</setting>
<setting name="UIContentHight" serializeAs="String">
<value>333</value>
</setting>
<setting name="FeatureBrowserEmulation" serializeAs="String">
<value>8000</value>
</setting>
</Grabacr07.KanColleViewer.Properties.Settings>
</applicationSettings>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Reactive.Core" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.2.4.0" newVersion="2.2.4.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Reactive.Interfaces" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.2.4.0" newVersion="2.2.4.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Reactive.Linq" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.2.4.0" newVersion="2.2.4.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>