Web.config 1.2 KB

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. 有关如何配置 ASP.NET 应用程序的详细信息,请访问
  4. https://go.microsoft.com/fwlink/?LinkId=169433
  5. -->
  6. <configuration>
  7. <appSettings>
  8. <add key="ConfigsNpgsql" value="" />
  9. </appSettings>
  10. <system.web>
  11. <compilation targetFramework="4.6.1" />
  12. <httpRuntime targetFramework="4.6.1" />
  13. </system.web>
  14. <connectionStrings>
  15. <add name="imgUploadDir" connectionString="/uploadImg/" />
  16. <add name="GISversion" connectionString="wwGIS_CS_1.1.1" />
  17. </connectionStrings>
  18. <runtime>
  19. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  20. <dependentAssembly>
  21. <assemblyIdentity name="System.Runtime.CompilerServices.Unsafe" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
  22. <bindingRedirect oldVersion="0.0.0.0-6.0.0.0" newVersion="6.0.0.0" />
  23. </dependentAssembly>
  24. <dependentAssembly>
  25. <assemblyIdentity name="System.Buffers" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
  26. <bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
  27. </dependentAssembly>
  28. </assemblyBinding>
  29. </runtime>
  30. </configuration>
  31. <!--ProjectGuid: D194C022-4426-4CD0-A5EE-39E99E42FE20-->