App.config 604 B

12345678910111213141516171819202122
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <configuration>
  3. <startup>
  4. <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
  5. </startup>
  6. <system.serviceModel>
  7. <services>
  8. <service name="BBIWARG.API.Server">
  9. <endpoint address="http://localhost:8733/Design_Time_Addresses/BBIWARG.API/Server/"
  10. binding="webHttpBinding"
  11. contract="BBIWARG.API.IServer"/>
  12. </service>
  13. </services>
  14. <behaviors>
  15. <endpointBehaviors>
  16. <behavior>
  17. <webHttp />
  18. </behavior>
  19. </endpointBehaviors>
  20. </behaviors>
  21. </system.serviceModel>
  22. </configuration>