vote up 1 vote down star

is there a best way to deploy to the GAC?

is dragging the dll to the GAC sufficient?

flag

57% accept rate

5 Answers

vote up 3 vote down check

Read How to install an assembly into the Global Assembly Cache in Visual C#.
Your assembly needs a strong name, but basically dragging the DLL to the GAC is sufficient.

link|flag
vote up 0 vote down

Hi,

I suggest using GACUtil, which ships with the .Net Framework.
Although as weiqure has already mentioned, dragging and dropping to the Assembly folder is adequate.

link|flag
vote up 2 vote down

The way to deploy to the GAC is to use a Setup project.

link|flag
vote up 0 vote down

I highly recommend you to use GacBrowser (open-source). This gives very good control over your GAC.

Gacutil is NOT for deployment. This is a developertool and has been moved to the SDK. Dragging and dropping could produce unexpected results.

link|flag
What "unexpected results"? I'm intrigued. – Kev Jul 7 at 10:12
Well, libraries not being installed for example :) – ropstah Jul 7 at 10:30
vote up 1 vote down

Use gacutil.

link|flag

Your Answer

Get an OpenID
or

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