Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Installation of an assembly to GAC both for mono/.NET

Tags:

.net

mono

gac

As far as I know, for installation of an assmebly for .NET is as follows.

 'gacutil /i nunit.framework.dll' 

And for the mono, set the directory to MONO_PATH is doing the job.

  • Is this correct?
  • With .NET/windows, where does the assembly installed? I couldn't see any change in c:\Windows\Microsoft.NET\GAC_MSIL, after running the gacutil command.
like image 370
prosseek Avatar asked Oct 15 '22 04:10

prosseek


1 Answers

If you want to install a .NET assembly to the GAC. You use gacutil, in windows or with mono:

$ gacutil -i gac_lib.dll

See the mono documentation.

like image 114
Oded Avatar answered Nov 14 '22 22:11

Oded