deploying to the GAC

c#, gac, visual-studio

Solution

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.

Problem

is there a best way to deploy to the GAC? is dragging the dll to the GAC sufficient?

Original source