2010-03-02 17:56:21 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<configuration>
|
|
|
|
<connectionStrings>
|
2011-07-12 07:00:48 +00:00
|
|
|
<add name="FluentCon" connectionString="Server=.;Initial Catalog=Pets;User ID=sa;Password=123456" />
|
2010-03-02 17:56:21 +00:00
|
|
|
</connectionStrings>
|
|
|
|
<appSettings>
|
2011-03-11 18:49:48 +00:00
|
|
|
<add key ="Location" value ="Office"/>
|
2010-03-02 17:56:21 +00:00
|
|
|
<add key ="Factory" value ="SqlServer"/>
|
|
|
|
<add key ="LogConnection" value ="connection"/>
|
|
|
|
<add key ="LogLevel" value ="Warn"/>
|
|
|
|
</appSettings>
|
2011-04-11 12:55:45 +00:00
|
|
|
<system.diagnostics>
|
|
|
|
<trace autoflush="true" indentsize="4">
|
|
|
|
<listeners>
|
|
|
|
<add name="myListener" type="System.Diagnostics.TextWriterTraceListener"
|
|
|
|
initializeData="TraceOutput.log" />
|
|
|
|
<remove name="Default" />
|
|
|
|
</listeners>
|
|
|
|
</trace>
|
|
|
|
</system.diagnostics>
|
2010-03-02 17:56:21 +00:00
|
|
|
</configuration>
|