29 lines
1.4 KiB
Plaintext
29 lines
1.4 KiB
Plaintext
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<configuration>
|
||
|
<configSections>
|
||
|
</configSections>
|
||
|
<appSettings>
|
||
|
<add key="LanguageMode" value="zh-CHT"/>
|
||
|
</appSettings>
|
||
|
<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>
|
||
|
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.2"/></startup></configuration>
|