app.config 869 B

123456789101112131415161718192021
  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. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  15. <dependentAssembly>
  16. <assemblyIdentity name="System.Data.SQLite" publicKeyToken="db937bc2d44ff139" culture="neutral" />
  17. <bindingRedirect oldVersion="0.0.0.0-1.0.94.0" newVersion="1.0.94.0" />
  18. </dependentAssembly>
  19. </assemblyBinding>
  20. </runtime>
  21. </configuration>