app.config 1.4 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <configSections>
  4. <section name="nlog" type="NLog.Config.ConfigSectionHandler, NLog"/>
  5. </configSections>
  6. <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  7. <targets async="true"></targets>
  8. </nlog>
  9. <appSettings>
  10. <add key="DebugProgramDataPath" value="ProgramData-Server"/>
  11. <add key="ReleaseProgramDataPath" value="ProgramData-Server"/>
  12. </appSettings>
  13. <runtime>
  14. <legacyUnhandledExceptionPolicy enabled="1"/>
  15. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  16. <dependentAssembly>
  17. <assemblyIdentity name="System.Data.SQLite" publicKeyToken="db937bc2d44ff139" culture="neutral"/>
  18. <bindingRedirect oldVersion="0.0.0.0-1.0.94.0" newVersion="1.0.94.0"/>
  19. </dependentAssembly>
  20. <dependentAssembly>
  21. <assemblyIdentity name="System.IO.FileSystem.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral"/>
  22. <bindingRedirect oldVersion="0.0.0.0-4.0.1.0" newVersion="4.0.1.0"/>
  23. </dependentAssembly>
  24. <dependentAssembly>
  25. <assemblyIdentity name="SimpleInjector" publicKeyToken="984cb50dea722e99" culture="neutral"/>
  26. <bindingRedirect oldVersion="0.0.0.0-4.0.7.0" newVersion="4.0.7.0"/>
  27. </dependentAssembly>
  28. </assemblyBinding>
  29. </runtime>
  30. <startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6"/></startup></configuration>