I have my own WCF service. I do not have the app.config file, instead, all configurations are executed at runtime. But I can't figure out how to enable debugging in code.
UPDATE
I have a VS solution with two projects:
- WCF service hosted in a WinForms application
- Simple console client using the service
I want to start a debugging session in Visual Studio, debug the client, set and click breakpoints in the service application. I was able to do this when I used the app.config files, but now I would like to do the same without them.
source share