-
Notifications
You must be signed in to change notification settings - Fork 11
/
App.config
114 lines (114 loc) · 4.93 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
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
<?xml version="1.0" encoding="utf-8"?>
<!--
This file is part of Snap.Net
Copyright (C) 2020 Stijn Van der Borght
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<configuration>
<configSections>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<section name="SnapDotNet.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.7.2" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.6.0" newVersion="4.0.6.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Memory" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.1.1" newVersion="4.0.1.1" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Microsoft.VisualStudio.Threading" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-16.6.0.0" newVersion="16.6.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Dataflow" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.6.5.0" newVersion="4.6.5.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<userSettings>
<SnapDotNet.Properties.Settings>
<setting name="Server" serializeAs="String">
<value />
</setting>
<setting name="ControlPort" serializeAs="String">
<value>1705</value>
</setting>
<setting name="PlayDevices" serializeAs="String">
<value />
</setting>
<setting name="PlayerPort" serializeAs="String">
<value>1704</value>
</setting>
<setting name="DeviceInstanceIds" serializeAs="String">
<value />
</setting>
<setting name="DeviceAutoPlayFlags" serializeAs="String">
<value />
</setting>
<setting name="Theme" serializeAs="String">
<value>BaseDark</value>
</setting>
<setting name="Accent" serializeAs="String">
<value>Blue</value>
</setting>
<setting name="AutoReconnect" serializeAs="String">
<value>True</value>
</setting>
<setting name="DeviceSettings" serializeAs="String">
<value />
</setting>
<setting name="UpgradeRequired" serializeAs="String">
<value>True</value>
</setting>
<setting name="SnapControlDismiss" serializeAs="String">
<value>0</value>
</setting>
<setting name="NotificationBehaviour" serializeAs="String">
<value>0</value>
</setting>
<setting name="NotificationAutoDismissSeconds" serializeAs="String">
<value>5</value>
</setting>
<setting name="DeviceMissingBehaviour" serializeAs="String">
<value>0</value>
</setting>
<setting name="DeviceMissingRetryIntervalSeconds" serializeAs="String">
<value>3</value>
</setting>
<setting name="HideOfflineClients" serializeAs="String">
<value>False</value>
</setting>
<setting name="DeviceMissingExpiryDays" serializeAs="String">
<value>5</value>
</setting>
<setting name="BroadcastSettings" serializeAs="String">
<value />
</setting>
</SnapDotNet.Properties.Settings>
</userSettings>
</configuration>