ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/AnywhereTS-MSSQL/trunk/TSAdminTool/app.config
Revision: 34
Committed: Thu Jul 12 10:58:36 2012 UTC (11 years, 4 months ago) by william
File size: 1371 byte(s)
Log Message:
+ add personal SQLServer isntance to app.config (this can be put back if released to public)

File Contents

# Content
1 <?xml version="1.0" encoding="utf-8" ?>
2 <configuration>
3 <configSections>
4 </configSections>
5 <connectionStrings>
6 <!--connectionString="Data Source=.\SQLEXPRESS;Database='AnywhereTS';Integrated Security=SSPI;Connect Timeout=30;User Instance=False"-->
7 <add name="AnywhereTS.Properties.Settings.atsConnectionString"
8 connectionString="Data Source=10.0.0.4\CORPORATEDB;Database='AnywhereTS';Integrated Security=SSPI;Connect Timeout=30;User Instance=False"
9 providerName="System.Data.SqlClient" />
10 </connectionStrings>
11
12 <configSections>
13 <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" />
14 </configSections>
15
16 <log4net debug="false">
17 <appender name="ATSAdminLog" type="log4net.Appender.FileAppender,log4net" >
18 <param name="File" value="c:\\hnguyen\\download\\error-log.txt" />
19 <param name="AppendToFile" value="true" />
20 <layout type="log4net.Layout.PatternLayout,log4net">
21 <param name="ConversionPattern" value="%d [%t] %-5p %c [%x] &lt;%X{auth}&gt; - %m%n" />
22 </layout>
23 </appender>
24 <root>
25 <priority value="ALL" />
26 <appender-ref ref="ATSAdmin" />
27 </root>
28 <category name="AnywhereTS.ATSAmdinLogger">
29 <priority value="ALL" />
30 </category>
31 </log4net>
32 </configuration>