VB.NET COM DLL's and the app.config

  • Thread starter Thread starter Jeremy Lambert
  • Start date Start date
J

Jeremy Lambert

I have a .NET COM dll being called from another .NET service (.exe).
I've added an app.config file to the dll, but it's not reading in the
values. I've read on a couple of other posts that you need to add the
key/value pair to the .NET app doing the calling, but this does not
seem to work when the dll is COM and you do a "CreateObject" on it.
Does anyone have any ideas on why this doesn't work or a good
workaround?
 
Nevermind....it just doesn't work. The workaround I found was to use
Reflection.Assembly instead.
 
Back
Top