App.config 851 B

123456789101112131415161718192021222324
  1. <?xml version="1.0"?>
  2. <configuration>
  3. <configSections>
  4. <section name="superSocket" type="SuperSocket.SocketEngine.Configuration.SocketServiceConfig, SuperSocket.SocketEngine"/>
  5. </configSections>
  6. <appSettings>
  7. <add key="ServiceName" value="SupperSocketService"/>
  8. </appSettings>
  9. <superSocket>
  10. <servers>
  11. <server name="YourServerInstanceName" serverTypeName="YourService" ip="Any" port="2020" maxConnectionNumber="100">
  12. </server>
  13. </servers>
  14. <serverTypes>
  15. <add name="YourService" type="YourServiceServerType, YourServiceAssembly"/>
  16. </serverTypes>
  17. </superSocket>
  18. <startup>
  19. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
  20. </startup>
  21. <runtime>
  22. <gcServer enabled="true"/>
  23. </runtime>
  24. </configuration>