Sunday, December 13, 2020

VirtualRadar.exe.config on Linux

Needed this file in the Virtual Radar Linux directory. Culled from https://forum.virtualradarserver.co.uk/viewtopic.php?t=757

 <pre>

<?xml version="1.0"?>
<configuration>
    <configSections>
    </configSections>
    <startup>
        <supportedRuntime version="v2.0.50727"/>
    </startup> 
<runtime>
        <assemblyBinding  xmlns="urn:schemas-microsoft-com:asm.v1">
            <dependentAssembly>
                <assemblyIdentity name="Mono.Data.Sqlite"
                                  publicKeyToken="0738eb9f132ed756"
                                  culture="neutral" />
                <bindingRedirect oldVersion="2.0.0.0"
                                 newVersion="4.0.0.0" />
            </dependentAssembly>
        </assemblyBinding>
    </runtime>
</configuration>
</pre> 

 

No comments:

Post a Comment