0

I am working on a component/assembly that is to be distributed to other developers and included in their systems.

In order to minimize the work they have to do, all configuration is done in a seperate file (my.config).

My current problem is that a library I am using requires configuration to be added to the app.config file of the application. I have no way of modifying this, so that it reads my custom config file.

Is there any way to add a section/setting to the current config, so that it behaves as if it was read from the app.config?

I can add to the app.config, so it must work at runtime only.

Thanks, Jonas

Assaf Lavie
  • 73,079
  • 34
  • 148
  • 203
Joda
  • 12,796
  • 10
  • 34
  • 33

1 Answers1

2

I don't think you can update the configuration without changing the underlying file. It's a read-only thing.

Assaf Lavie
  • 73,079
  • 34
  • 148
  • 203