Add to global assembly cache

When you develop a .Net application which uses the WiT Engine .Net namespace, Visual Studio will copy witdotnet2.dll into your application’s folder by default unless you have registered witdotnet2.dll into the global assembly cache. Microsoft's Global Assembly Cache Tool (gacutil.exe) allows you to view and manipulate the contents of the global assembly cache and download cache. It is included in .NET Framework SDK, but the WiT Setup procedure does not include it since it is not re-distributable. So you must install and uninstall it yourself.

To install WiT engine for .Net namespace, enter this command in a command prompt window:

gacutil /if witdotnet2.dll

To uninstall WiT engine for .Net namespace:

gacutil /u witdotnet2.dll

If you are developing .Net applications under x64 platform, you need to install x64 version of witdotnet2.dll (located under $(withome)\bin64) by using x64 version of gacutil.exe.

Previous 

Up 

Next