I have an existing app under .Net framework 4.6.2. The app includes a WCF client and a server, both hosted in IIS. Now I am planning to port the app to .Net Core and the first challenge I am facing is to figure out how to port my WCF configurations. We have endpoints and bindings configured in the <system.serviceModel> section of the web.config files on both client and server side. For instance, here is part of our server side config:
And here is the client side
Now under .Net Core, the <system.serviceModel> doesn't seem to be supported any more. If so, where does it moved to? What's the best approach of converting them?