On a windows machine I have an app.config in C# which belongs to runner.exe (example program) that loads my assembly.dll.
After compilation I get runner.exe.config (derived from the app.config).
I would like electron to call my assembly.dll but i'm not able to add the app.config (calling and running methods in the assembly which don't need a configuration work as expected).
I tried electron.exe.config, I tried node.dll.config (which I assumed was called from the electron.exe).
Another thing is that there are 2 electron.exe processes running, one spawned by the other and i'm not sure if they read the config.
Any help is appreciated.
On a windows machine I have an app.config in C# which belongs to runner.exe (example program) that loads my assembly.dll. After compilation I get runner.exe.config (derived from the app.config). I would like electron to call my assembly.dll but i'm not able to add the app.config (calling and running methods in the assembly which don't need a configuration work as expected). I tried electron.exe.config, I tried node.dll.config (which I assumed was called from the electron.exe). Another thing is that there are 2 electron.exe processes running, one spawned by the other and i'm not sure if they read the config. Any help is appreciated.