Can i force a dll to reload it's configuration?
In my VB library I'm using this configuration:
<applicationSettings>
<ComWrapper.My.MySettings>
<setting name="MySetting" serializeAs="String">
<value>This is an entry</value>
</setting>
</applicationSettings>
It's no problem to access the "MySetting" value from the code:
Public Function GetSetting() As String
Return ComWrapper.My.MySettings.Default.MySetting
End Function
but it look like that the value "This is an entry" is embedded into the dll's code. If I change it in the app.config or in the ComWrapper.dll.config file it has no effect on the return value.