I am trying to use microsoft enterprise library logging framework in a c++/cli dll.
I tested it in a c++ application, and it worked beatifully. it is compiling in the dll, but does not work when I try to run it, and the error is not getting caught in my catch clause.
I have all the correct import and using statements in place - as it compiles without a problem.
This line of code is not going through in the dll:
IConfigurationSource^ dataSource = gcnew FileConfigurationSource("C:\\Documents and Settings\\All Users\\WSUtils\\WSUtils\\app.config");
any ideas?