I can\'t get the App.Config file to load into the App Domain.
I\'m using
[System.AppDomain]::CurrentDomain.SetData(\"APP_CONFIG_FILE\", $config_path)
>
Have you tried the solution presented here: Change default app.config at runtime
It appears to describe some sort of cache, and that more work has to be done to ensure the loaded data is read.
Th important part of the first answer is: "There exists a class ClientConfigPaths that caches the paths. So, even after changing the path with SetData, it is not re-read, because there already exist cached values. The solution is to remove these, too"