34 lines
1.6 KiB
XML
34 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<configuration>
|
|
<system.diagnostics>
|
|
<sources>
|
|
<!-- Questa sezione definisce la configurazione di registrazione per My.Application.Log -->
|
|
<source name="DefaultSource" switchName="DefaultSwitch">
|
|
<listeners>
|
|
<add name="FileLog"/>
|
|
<!-- Per scrivere nel log eventi dell'applicazione, rimuovere il commento dalla sezione sottostante -->
|
|
<!--<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"/>
|
|
<!-- Per scrivere nel log eventi dell'applicazione, rimuovere il commento dalla sezione sottostante e sostituire APPLICATION_NAME con il nome dell'applicazione -->
|
|
<!--<add name="EventLog" type="System.Diagnostics.EventLogTraceListener" initializeData="APPLICATION_NAME"/> -->
|
|
</sharedListeners>
|
|
</system.diagnostics>
|
|
<startup>
|
|
|
|
|
|
<!--<supportedRuntime version="v3.5" sku=".NETFramework,Version=v3.5"/>
|
|
<supportedRuntime version="v2.0" sku=".NETFramework,Version=v2.0"/>-->
|
|
|
|
<supportedRuntime version="v2.0" sku=".NETFramework,Version=v2.0.50727"/>
|
|
<!--<supportedRuntime version="v2.0.50727"/>-->
|
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2"/>
|
|
</startup>
|
|
</configuration>
|