Is there an equivalent of app.config for dll's? If not, what is the easiest way to store settings/configuration that are specific to a library (a dll)? THe library might be used in different applications.
|
feedback
|
|
You can have separate configuration file, but you'll have to read it "manually", the First, in the VS project right click --> Add --> New item --> Application Configuration File This will add Now to read from this file have such function:
And to use it:
You'll have to add reference to System.Configuration of course. When building the project, in addition to the DLL you'll have | |||||
feedback
|
|
Unfortunately, you can only have one app.config file per executable, so if you have DLL’s linked into your application, they cannot have their own app.config files. Solution is:
You don't need to put the App.config file in the Class Library's project. For example, let's say we have a class library named MyClasses.dll which uses the app.config file like so:
Now, let's say we have an Windows Application named MyApp.dll which references MyClasses.dll. It would contain an App.config with an entry such as:
OR An xml file is best equivalent for app.config. Use xml serialize/deserialize as needed. You can call it what every you want. If your config is "static" and does not need to change, your could also add it to the project as an embedded resource. Hope it gives some Idea | |||
|
feedback
|
|
As far as I'm aware, you have to copy + paste the sections you want from the library .config into the applications .config file. You only get 1 app.config per executable instance. | |||
feedback
|
|
assemblies don't have their own app.config file. They use the app.config file of the application that is using them. So if your assembly is expecting certain things in the config file, then just make sure your application's config file has those entries in there. If your assembly is being used by multiple applications then each of those applications will need to have those entries in their app.config file. What I would recommended you do is define properties on the classes in your assembly for those values for example
Here, the property ExternalServicesUrl get's its value from the application's config file. If any application using this assembly is missing that setting in the config file you'll get an exception o it's clear that something went missing. MissingConfigFileAppSettings is a custom Exception. You may want to throw a different exception. Of course a better design would be for the method of those classes to be provided those values as parameters rather than relying on config file setting. That way the applications using these classes can decide from where and how they provide these values. | ||||
|
feedback
|
|
If you add Settings to a Class Library project in Visual Studio (Project Properties, Settings), it will add an app.config file to your project with the relevant userSettings/applicatioNSettings sections, and the default values for these settings from your Settings.settings file. However this configuration file will not be used at runtime - instead the class library uses the configuration file of its hosting application. I believe the main reason for generating this file is so that you can copy/paste the settings into the host application's configuration file. | |||
|
feedback
|
|
Configuration files are application-scoped and not assembly-scoped. So you'll need to put your library's configuration sections in every application's configuration file that is using your library. That said, it is not a good practice to get configuration from the application's configuration file, specially the That said, XML configuration files are extremely handy, so the best compromise that I've found is using custom configuration sections. You get to put your library's configuration in an XML file that is automatically read and parsed by the framework and you avoid potential accidents. You can learn more about custom configuration sections on MSDN and also Phil Haack has a nice article on them. | |||||
feedback
|