32 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?xml version="1.0" encoding="utf-8" ?>
 | |
| <configuration>
 | |
|     <configSections>
 | |
|     </configSections>
 | |
|     <connectionStrings>
 | |
|         <add name="CommonClassv2.My.MySettings.ConnectionString" connectionString="Data Source=orcl;Persist Security Info=True;User ID=chick;Password=c1245;Unicode=True"
 | |
|             providerName="System.Data.OracleClient" />
 | |
|     </connectionStrings>
 | |
|     <system.diagnostics>
 | |
|         <sources>
 | |
|             <!-- 이 섹션은 My.Application.Log의 로깅 구성을 정의합니다. -->
 | |
|             <source name="DefaultSource" switchName="DefaultSwitch">
 | |
|                 <listeners>
 | |
|                     <add name="FileLog"/>
 | |
|                     <!-- 아래 섹션의 주석 처리를 제거하여 응용 프로그램 이벤트 로그에 씁니다. -->
 | |
|                     <!--<add name="EventLog"/>-->
 | |
|                 </listeners>
 | |
|             </source>
 | |
|         </sources>
 | |
|         <switches>
 | |
|             <add name="DefaultSwitch" value="Information" />
 | |
|         </switches>
 | |
|         <sharedListeners>
 | |
|             <add name="FileLog"
 | |
|                  type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"
 | |
|                  initializeData="FileLogWriter"/>
 | |
|             <!-- 아래 섹션의 주석 처리를 제거하여 APPLICATION_NAME을 응용 프로그램 이름으로 바꾼 후 응용 프로그램 이벤트 로그에 씁니다. -->
 | |
|             <!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
 | |
|         </sharedListeners>
 | |
|     </system.diagnostics>
 | |
| </configuration>
 | 
