I'm a bit confused how to get config files embedded into the monobundle. I can create a config file for my application, but it doesn't appear that I can create (or that it will see) a config file created for a referenced assembly. Here's what I need to do:
I have an assembly that references an external library -- so let's say library1.dll, which is referenced from externalloading.assembly.dll. In the past, prior to creating bundles, when I'd have people use the program, I'd just zip up the program files -- folks would unzip them. In the program files, they'd find an application config file: myapp.exe.config and the externalloading assembly config file: externalloading.assembly.dll.config. If they user wanted to enable the functionality in the external library -- they would open the config file, and set the dllmap values to a path that corresponded to their system.
I'm trying to recreate this process within my MonoBundle. I create an application config file -- name it after my externalloading assembly -- but no matter what settings I give it - it doesn't get copied into my MonoBundle. Likewise, if I open the bundle, and copy it their directly, the application doesn't appear to be even looking at the file.
So...I guess I'm looking for some information in how this works when working within the monobundle because it must be different or there must be something I'm missing. Because I can pull all the data out of the bundle, run the mono command line -- and everything works just like I'd expect if I have the exteranlloading.assembly.dll.config file in the folder with the executing assembly.
Thanks,
--tr