-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.config
75 lines (73 loc) · 3.45 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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<section name="flickrNet" type="FlickrNet.FlickrConfigurationManager,FlickrNet"/>
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" >
<section name="ClipGeo.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false" />
</sectionGroup>
</configSections>
<startup useLegacyV2RuntimeActivationPolicy="true">
<!-- <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.1"/>-->
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/>
</startup>
<runtime>
<!-- Runtime Array-Size increase for 64bit - necessary for some Hashsets that can get really large (> 500 Million entries)-->
<gcAllowVeryLargeObjects enabled="true" />
<!-- Disable FlickrNet Cache - helps prevent some file-is-locked-errors-->
<flickrNet cacheDisabled="true">
</flickrNet>
<FlickrNet cacheDisabled="true">
</FlickrNet>
<flickr cacheDisabled="true">
</flickr>
<Flickr cacheDisabled="true">
</Flickr>
<flickrnet cacheDisabled="true">
</flickrnet>
</runtime>
<!--<section name="flickrNet" type="FlickrNet.FlickrConfigurationManager,FlickrNet"/>
<flickrNet cacheLocation="..\FlickrCache\">
</flickrNet>-->
<system.diagnostics>
<sources>
<!-- This section defines the logging configuration for My.Application.Log -->
<source name="DefaultSource" switchName="DefaultSwitch">
<listeners>
<add name="FileLog"/>
<!-- Uncomment the below section to write to the Application Event Log -->
<!--<add name="EventLog"/>-->
</listeners>
</source>
</sources>
<switches>
<add name="DefaultSwitch" value="Information"/>
</switches>
<sharedListeners>
<add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter"/>
<!-- Uncomment the below section and replace APPLICATION_NAME with the name of your application to write to the Application Event Log -->
<!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
</sharedListeners>
</system.diagnostics>
<userSettings>
<ClipGeo.My.MySettings>
<setting name="bottomleftlat" serializeAs="String">
<value>0</value>
</setting>
<setting name="bottomleftlong" serializeAs="String">
<value>0</value>
</setting>
<setting name="toprightlat" serializeAs="String">
<value>0</value>
</setting>
<setting name="toprightlong" serializeAs="String">
<value>0</value>
</setting>
<setting name="Sourcepath" serializeAs="String">
<value>...\01_Input\</value>
</setting>
<setting name="Shapepath" serializeAs="String">
<value />
</setting>
</ClipGeo.My.MySettings>
</userSettings>
</configuration>