I have some information in my nupkg that I would like to include in the consumer's application. What is the best way to include a partial app.config directly when consuming the nupkg?
I have currently done this:
- mypackage.nupkg
- content
- App.config
 
 
 - content
 
But this makes that it wants to override a user's own App.config, while there could be valuable information in there.
So I want to combine my App.config with the user's App.config.
I already saw something like this: C#: manage Multiple App.config files, but I cannot see how I could force the user to include my piece into its App.config.
Contents of my App.config file:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <probing privatePath="somefolder;someotherfolder;" />
    </assemblyBinding>
  </runtime>
</configuration>
How can I force the consumer to add my App.config to its own app.config?