tags:

views:

51

answers:

1

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.
+3  A: 

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.

Oded
What's the difference between install into GAC and attach the path to MONO_PATH with mono?
prosseek
@prosseek - If all you want is to have the assembly globally accessible, then there is no difference. See what the documentation has to say about what should be installed in the GAC - http://www.mono-project.com/Assemblies_and_the_GAC#What_Should_Be_Installed_to_the_GAC
Oded