is there a best way to deploy to the GAC?
is dragging the dll to the GAC sufficient?
|
|
is there a best way to deploy to the GAC? is dragging the dll to the GAC sufficient?
|
||
|
|
|
|
Read How to install an assembly into the Global Assembly Cache in Visual C#. |
||
|
|
|
|
Hi, I suggest using GACUtil, which ships with the .Net Framework. |
||
|
|
|
|
The way to deploy to the GAC is to use a Setup project. |
||
|
|
|
|
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. |
||
|
|
Use gacutil. |
||
|
|