I have added a web reference to a WCF service in my MT project (using MonoDevelop 2.4.2 here).
I am trying to recycle the app.config file that is used by Visual Studio. I copied it over into my MT’s root directory and specified “copy to output directory” in MonoDevelop. Still it does not work.
What is the correct way to use an app.config in MonoDevelop?
René
You can’t use app.config files in Monotouch unfortunately. You have to create all the bindings yourself in code. In one of our projects, this is what we have done:
You need to go through and set EVERY property that is found in the server’s app.config file, ensuring that the values match exactly, otherwise this won’t work.
(If I’ve misunderstood your question, then I do apologise!).