21 lines
748 B
XML
21 lines
748 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<connectionStrings>
|
|
<add name="FluentCon" connectionString="Server=Sovereign;Initial Catalog=Pets;User ID=sa;Password=123456" />
|
|
</connectionStrings>
|
|
<appSettings>
|
|
<add key ="Location" value ="Office"/>
|
|
<add key ="Factory" value ="SqlServer"/>
|
|
<add key ="LogConnection" value ="connection"/>
|
|
<add key ="LogLevel" value ="Warn"/>
|
|
</appSettings>
|
|
<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>
|
|
</configuration> |