2021-03-04 10:44:09 +01:00
<?xml version="1.0" encoding="utf-8"?>
2016-07-04 16:45:45 +02:00
<configuration>
<system.diagnostics>
<sources>
<!-- Questa sezione definisce la configurazione di registrazione per My.Application.Log -->
<source name="DefaultSource" switchName="DefaultSwitch">
<listeners>
2021-03-04 10:44:09 +01:00
<add name="FileLog"/>
2016-07-04 16:45:45 +02:00
<!-- Per scrivere nel log eventi dell'applicazione, rimuovere il commento dalla sezione sottostante -->
<!--<add name="EventLog"/>-->
</listeners>
</source>
</sources>
<switches>
2021-03-04 10:44:09 +01:00
<add name="DefaultSwitch" value="Information"/>
2016-07-04 16:45:45 +02:00
</switches>
<sharedListeners>
2021-03-04 10:44:09 +01:00
<add name="FileLog" type="Microsoft.VisualBasic.Logging.FileLogTraceListener, Microsoft.VisualBasic, Version=8.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" initializeData="FileLogWriter"/>
2016-07-04 16:45:45 +02:00
<!-- 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>
2021-03-04 10:44:09 +01:00
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/></startup>
2021-02-25 11:14:44 +01:00
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
2021-03-04 10:44:09 +01:00
<assemblyIdentity name="System.Threading.Tasks.Extensions" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-4.2.0.1" newVersion="4.2.0.1"/>
2021-02-25 11:14:44 +01:00
</dependentAssembly>
<dependentAssembly>
2021-03-04 10:44:09 +01:00
<assemblyIdentity name="Microsoft.Bcl.AsyncInterfaces" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-5.0.0.0" newVersion="5.0.0.0"/>
2021-02-25 11:14:44 +01:00
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>