Installation of an assembly to GAC both for mono/.

2019-05-03 14:08发布

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.

标签: .net mono gac
1条回答
该账号已被封号
2楼-- · 2019-05-03 14:46

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.

查看更多
登录 后发表回答