I have a managed DLL (MyAssembly.dll) written in C#. I am storing configuration settings in the Properties.Settings list that is serialized by Visual Studio to the app.config.
All nice and dandy.
I have an unmanaged application written in Visual C++. It references the our managed DLL. It works fine, but no MyAssembly.dll.config file is deployed by the build process to folder of the unmanaged executable. How can I change my configs after deployment?