forked from tombrothers/VfpExamples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.config
More file actions
26 lines (26 loc) · 1.07 KB
/
Copy pathApp.config
File metadata and controls
26 lines (26 loc) · 1.07 KB
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
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<connectionStrings>
<add name="Northwind"
connectionString="C:\VfpNetExamples\NorthwindData\Northwind.dbc"
providerName="VfpClient"/>
<add name="FreeTables"
connectionString="C:\VfpNetExamples\FreeTables"
providerName="VfpClient"/>
</connectionStrings>
<system.diagnostics>
<sources>
<!-- Adding the VfpClient source will allow you to see all VFP commands in the Output panel. -->
<source name="VfpClient" switchValue="Information" >
<!-- This listener will trace VFP commands to a text file and is intended for use in production when troubleshooting an issue. -->
<listeners>
<add name="VfpClientTextWriterTraceListener"
type="System.Diagnostics.TextWriterTraceListener"
initializeData="c:\VfpClient.txt" />
</listeners>
</source>
</sources>
<!-- Need to include the following when using VfpClientTextWriterTraceListener -->
<trace autoflush="true"/>
</system.diagnostics>
</configuration>