App.config 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <configuration>
  3. <startup>
  4. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
  5. </startup>
  6. <runtime>
  7. <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
  8. <dependentAssembly>
  9. <assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
  10. <bindingRedirect oldVersion="0.0.0.0-12.0.0.0" newVersion="12.0.0.0" />
  11. </dependentAssembly>
  12. <dependentAssembly>
  13. <assemblyIdentity name="HslCommunication" publicKeyToken="cdb2261fa039ed67" culture="neutral" />
  14. <bindingRedirect oldVersion="0.0.0.0-10.1.1.0" newVersion="10.1.1.0" />
  15. </dependentAssembly>
  16. </assemblyBinding>
  17. </runtime>
  18. <appSettings>
  19. <add key="CasunAgvUrl" value="http://localhost:9528" />
  20. <add key="AutoUpdateUrl" value="http://localhost:9528/downloads/Pms.xml" />
  21. <add key="PmsApi" value="http://localhost:62200/api/Agv/" />
  22. <add key="TabPage" value="DebugUI:调试任务" />
  23. <!--PlcUI:PLC连接|CallBoxUI:叫料盒|DebugUI:调试任务-->
  24. <add key="BoxCommunication" value="" />
  25. <!--Tcp|Udp|Com-->
  26. <add key="ComPortName" value="COM7" />
  27. <add key="ListenIp" value="0.0.0.0" />
  28. <add key="ListenPort" value="8898" />
  29. <add key="ClientSettingsProvider.ServiceUri" value="" />
  30. </appSettings>
  31. <system.web>
  32. <membership defaultProvider="ClientAuthenticationMembershipProvider">
  33. <providers>
  34. <add name="ClientAuthenticationMembershipProvider" type="System.Web.ClientServices.Providers.ClientFormsAuthenticationMembershipProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" />
  35. </providers>
  36. </membership>
  37. <roleManager defaultProvider="ClientRoleProvider" enabled="true">
  38. <providers>
  39. <add name="ClientRoleProvider" type="System.Web.ClientServices.Providers.ClientRoleProvider, System.Web.Extensions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" serviceUri="" cacheTimeout="86400" />
  40. </providers>
  41. </roleManager>
  42. </system.web>
  43. </configuration>