-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.config
38 lines (38 loc) · 2.5 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
<?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="iLogicExternalDebug.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
</sectionGroup>
</configSections>
<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>
<iLogicExternalDebug.My.MySettings>
<setting name="XSDCommandStringFilterElements" serializeAs="String">
<value>"C:\program files (x86)\xsd2code\xsd2code.exe" "C:\Users\alex.fielder\Dropbox\iLogicMk3\iLogicExternalDebug\FilterElements.xsd" FilterElements.vb /l VB /is+ /gbc+ /ggbc+ /xa+ /sc+</value>
</setting>
<setting name="XSDCommandStringModule" serializeAs="String">
<value>"C:\program files (x86)\xsd2code\xsd2code.exe" "C:\Users\alex.fielder\Dropbox\iLogicMk3\iLogicExternalDebug\Module.xsd" Module.vb /l VB /is+ /gbc+ /ggbc+ /xa+ /sc+</value>
</setting>
</iLogicExternalDebug.My.MySettings>
</userSettings>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup></configuration>