I've got an exe that references a dll file. The DLL file has a configuration mydll.dll.config The properties are accessed through
Properties.Settings.Default.mysetting;
The issue is that when deployed, I don't know where the settings are that the DLL is using. The config file is deployed in the same location as the exe and the dll file. To make a change to the dll, I had to recompile and deploy it. For my knowlege, where are the settings referenced? Are they actually compiled into the dll?