I have a C# class library and a startup project (a console app). The class library includes a service reference to a web service. When I try to run the project, I get an InvalidOperationException because the startup project isn't reading the class library's app.config, and it's ignoring the service reference. To get it working, I'm forced to add the same service reference to the startup project. Is there any way I can avoid this? Can I make the startup project recognize the class library's service reference and app.config without having to copy it to the startup project?
I've tried adding a link to the app.config from the class library, but that doesn't work. The class library isn't very portable if it requires anyone who uses it to add that service reference to the startup project.
You just need to copy the config key, pointing to the service, from your class library config file to your console app's config file.
You can copy the relevant portions of the app.config from the class library's configuration into the app.config for the console application.
Alternatively, if you're really trying to make this truly portable, you'll need to think about another way of referencing the address for the specific service reference from within the class library.
An alternative to using a service reference in the class library and then copying the config would be to use build events that call svcutil.exe. The thing I like about this is that you don't have to make "update service reference" when the service changes. It will be updated automatically.
In the class library, use a build event that only generates the proxy code:
In the application, use a build event that generates the config. You can use the /mergeConfig option to merge it into an existing app.config.
If you don't want to get a build error if the service is not running, put this in your project file and you will get a warning instead of an error:
Think about what you are trying to do - you have two assemblies that you are building:
Both of these assemblies have configuration files - I would imagine they look something like this:
When you run
ConsoleApp
it has no way of reading from or knowing abooutapp.config
from yourLibrary
assembly. The only configuration file that it knows or cares about isConsoleApp.exe.config
. Now it is possible to have configuration files reference each other but this is not the proper solution for what you are trying to do.Since your
Library
assembly has no entry point, it will never be loaded into an AppDomain. Since it will never be loaded into an AppDomain its application configuration file will never be used.What you ought to do is reference
Library
inConsoleApp
via a project reference. Then move all the relevant configuration data fromapp.config
intoConsoleApp.exe.config
as this is the configuration file that will be used by your application.This will allow you to have to two things you need to invoke methods on your web service
Library
that can send and receive SOAP messages.Library
to function.I'd think it more confusing if you had multiple configuration files running around.
If a library has configurable items, I would fully expect to have to put that configuration in my config file to properly consume the library.