Installation of an assembly to GAC both for mono/.

2019-05-03 13:58发布

问题:

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.

回答1:

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.



标签: .net mono gac