How do you install .NET Assembly in GAC?You can install
.NET assembly in two different ways:
" Login to www.microsoft.com and download the Microsoft Installer package. Run the installer to install .NET Assembly " Navigate to Microsoft Visual Studio <Version Number> ' Visual Studio Tools ' Visual Studio Command Prompt. In the command prompt, type the following command: gacutil -i sample.dll Here sample.dll is the assembly name representing the dll name of your project This Gacutil command will install the .NET assembly
|