Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
239 views

Effect of LoaderOptimizationAttribute

I have written a small piece of code regarding the dynamic loading of assemblies and creating class instances from those assemblies, including an executable, a test lib to be dynamically loaded and a ...
4
votes
2answers
724 views

How do I dynamically load raw assemblies that contains unmanaged code?(bypassing 'Unverifiable code failed policy check' exception)

I'm going to give an example of using System.Data.SQLite.DLL which is a mixed assembly with unmanaged code: If I execute this : var assembly= Assembly.LoadFrom("System.Data.SQLite.DLL") No ...
4
votes
1answer
379 views

Why is AppDomainSetup.ShadowCopyFiles a string?

I'm puzzled by this. From the documentation... A String containing the string value "true" to indicate that shadow copying is turned on; or "false" to indicate that shadow copying is turned off. ...
3
votes
3answers
359 views

Help needed with unloading .DLL's from AppDomain - Still not working even with ShadowCopy

I am trying to do the following. App A is the "mother app". It stays open. App B is just a .DLL where I write some classes that are derived from an interface specified in App A. Then, from App A, I ...
0
votes
1answer
150 views

Configure Shadow Copy using app.config

Let me explain the scenario first. I have installed multiple copies (Say 10) of Services from a single install base. Now I want to update one of the dll. I need to Stop all the services, update the ...
0
votes
1answer
120 views

Looking for minimum permissions to load assembly in Sandbox AppDomain. Why these permissions are needed?

I'm trying to put in place the minimum permissions for a sandbox AppDomain in order to load an assembly. It seems that it is mandatory to have PathDiscovery permission on the appBase and Read ...
0
votes
0answers
58 views

Why does CreateInstanceFromAndUnwrap not work in a web container?

Hi I have code that looks like the following: public static I Load<I>(string appDomainName, string fqDllName, string classType) where I : class { AppDomainSetup appDomainSetup = new ...
0
votes
2answers
430 views

Custom AppDomain and PrivateBinPath

I'm using c# 4.0 and a console application just for testing, the following code does gives an exception. AppDomainSetup appSetup = new AppDomainSetup() { ApplicationName = ...
0
votes
1answer
454 views

AppDomain shadow copy - Loading /Unloading a dynamically loaded Dll

The Code as below which i'm trying to load a dll dynamically is not working. AppDomain appDomain = AppDomain.CreateDomain("DllDomain"); Assembly a = appDomain.Load(fileName); //Assembly a = ...