vote up 1 vote down star

I put signed dll into GAC. I delete this dll from folder where other applications could reach it. I try to run client app, which used that dll. Dll is immidiately put back to the original folder. How does it happen?

I am guessing that GAC is monitoring folder and when it detects that dll is missing it puts the latest version back to the folder where other applications could reach it. If I am correct please tell me if GAC will automatically backup dll again if it will be rebuild.

flag
I have finally discovered how to delete this dll. The client code was able to run this library anyways. I noticed that the copy of that dll was put into Windows\assembly\GAC_MSIL - why is that. I expected client code to use dll from original dir- not from windows... – pkolodziej Feb 18 at 21:54
That's the GAC store. The CLR always searches the GAC first, then probes local directories. Please update your post and tell how you deleted the DLL. – nobugz Feb 18 at 22:07

3 Answers

vote up 0 vote down

Also, if you will be using different versions and using redirecting, be sure to mark the 'Specific version' too false in the properties of your reference.

To answer your question: No, the GAC will not monitor any other folders to look for updates made to a dll. You will have to install each version of a dll using gacutil.

link|flag
vote up 1 vote down

I don't know why this happens but this information may help you,

You don't need to delete files from where you copy to GAC. if an application is dependent to an assembly, GAC is the primary place to look for.

link|flag
vote up 2 vote down

The GAC has no awareness of the source of an assembly. The most likely explanation is that you simply got the DLL rebuilt by the IDE.

link|flag
No it wasn't rebuilt. – pkolodziej Feb 18 at 21:39

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.