We have an app the requires Full Trust because of a Chilkat .NET 3.5 DLL This has not been a huge issue, however we would like to submit our app to the: Windows Web Application Gallery and it must be Medium Trust.
So to make it medium trust all we need to do is
- remove the reference to the DLL
- comment out the methods that tie into that code
Rather than making 2 different versions of the app, what is the best approach to remove the reference to the DLL for one version of the app?
thanks!