markus / ConvertService / ServiceBase / Markus.Service.Station / App.config @ eeb0a39c
이력 | 보기 | 이력해설 | 다운로드 (1.44 KB)
1 | 2d0113f1 | taeseongkim | <?xml version="1.0" encoding="utf-8"?> |
---|---|---|---|
2 | <configuration> |
||
3 | <configSections> |
||
4 | <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> |
||
5 | <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> |
||
6 | <section name="log4net" type="log4net.Config.Log4NetConfigurationSectionHandler, log4net" /> |
||
7 | </configSections> |
||
8 | <log4net> |
||
9 | <appender name="EventLogAppender" type="log4net.Appender.EventLogAppender"> |
||
10 | <applicationName value="ServiceStation"/> |
||
11 | <layout type="log4net.Layout.PatternLayout"> |
||
12 | <conversionPattern value="%date [%thread] %-5level %logger - %message%newline" /> |
||
13 | </layout> |
||
14 | </appender> |
||
15 | <root> |
||
16 | <level value="All" /> |
||
17 | <appender-ref ref="EventLogAppender" /> |
||
18 | </root> |
||
19 | </log4net> |
||
20 | <startup> |
||
21 | <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" /> |
||
22 | </startup> |
||
23 | <entityFramework> |
||
24 | <defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" /> |
||
25 | <providers> |
||
26 | <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" /> |
||
27 | </providers> |
||
28 | </entityFramework> |
||
29 | 0157b158 | taeseongkim | <system.serviceModel> |
30 | <bindings /> |
||
31 | <client /> |
||
32 | </system.serviceModel> |
||
33 | 2d0113f1 | taeseongkim | </configuration> |