Currently, VS.NET does not allow you to add references to assemblies in the GAC. You have to extract it first, add a reference to a copy of the dll, outside of the GAC. At the time you add the reference, VS.NET will in fact add a reference to the GACed dll.
How To Extract:
Open up the command prompt and CD into
Do a DIR and you will see a folder name like 3.0.1.0__
CD into that folder and do a DIR.
You will find Microsoft.BizTalk.MessageBoxOM.dll.
Run the following command to copy the dll to a folder you can access it from:
copy *.dll C:\folder
You can then reference that file from VS.NET
No comments:
Post a Comment