I have the MySQL Connector/NET installed on my PC. I modified the source code and recompiled one of the dlls (MySQL.Data.dll). With the program already installed, how can add this dll to the Global Assembly Cache?

If your answer involves using gacutil.exe, please tell me where I can find it on my PC or where I might download it. Thanks!

link|improve this question

Do you control the client application that consumes that Connector? – Pieter Breed Oct 15 '09 at 19:59
I'm not exactly sure. In the end, I'm writing a Silverlight App, but Entity Framework is what actual is consuming the connector (I think...there might be another layer of abstraction behind that that I'm not aware of). I think this is the flow: MySQL DB -> MySQL Connector/.Net -> Entity Framework - > RIA Services -> Silverlight – Ben McCormack Oct 15 '09 at 20:04
feedback

4 Answers

up vote 0 down vote accepted

You can put it in the GAC but unless you have access to the private key with which it was originally signed, the installed program(s) will not recognize it.

link|improve this answer
I'm assuming the "private key" is different from the "public key token." So is there any way to make my "custom" dll useable in the program? – Ben McCormack Oct 15 '09 at 19:39
I'm afraid not, what you want to do is something the signing was designed to prevent. – Henk Holterman Oct 15 '09 at 19:44
That makes sense. It's still frustrating. I'll keep digging for the correct way to do this. – Ben McCormack Oct 15 '09 at 19:48
feedback
"C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin\gacutil.exe" /i "strongnamed.dll" /f /nologo
link|improve this answer
feedback

Very simple: Start-> Programs-> Microsoft Visual Studio 2005/2008 -> Visul Studio Tools -> Visula Studio 2005/2008 commadn prompt

a cmd appears, where you can type gacutil.

It also shows you the path where it resides:

C:\Program Files\Microsoft Visual Studio 9.0\VC> on my computer.

link|improve this answer
feedback

Open Windows Explorer (WindowsKey+E). Go to c:\windows\assembly. Open a second explorer window and drag and drop your assembly to the first window.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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