Activity overview
Latest activity by jsm2000
Thanks for the explanation.
Previously, I did merge all the DLLs in with EXE but my application also uses an optional MEF-based extension DLL. When I did merge the EXE and DLLS (except the MEF extension) the MEF didn't work. My MEF extension DLL is loaded but the exported/imported interfaces aren't resilved.
Not merging allows the MEF to work. I did try to attribute the interfaces imported/exported with <DoNotPrune(), DoNotObfuscate()> but this work.
Any suggestions? / comments
Thanks for the explanation.
Previously, I did merge all the DLLs in with EXE but my application also uses an optional MEF-based extension DLL. When I did merge the EXE and DLLS (except the MEF ex...
local variable in error report
When I merge all my DLLS with the EXE, I get local variable in the error report. But when the DLLs are not merged, I do not get local variables. Is this behavior by design or am I doing somethi...
handling all exceptions manually?
From the forums I can see that SA can send an exception report manually using ExceptionReporting.ReportException(Exception). In this situation would I still have to go through the process of using...