I created a dll in VB.NET 2005 and I’m trying to access it in FoxPro 9. This works fine on the development machine, but after I register it on the test machine I get errors saying the file cannot be found. After doing some research I found out that the development machine has a CodeBase registry entry and the test machine didn’t I added this to the test machine and it worked. I’m wondering why REGASM didn’t add this setting to the registry and if there is another command I need to run when I try to register this. I have read a lot about installing it in the GAC, but gacutil does not seem to be in .NET 2.0 framework. Is there a new command for this in 2005 or at least a command to automatically put the CodeBase entry into the registry?
Here is the article I read, but it is on older framework
Command I used for to register it on the test machine.
Thank you!
Here is the article I read, but it is on older framework
Command I used for to register it on the test machine.
Code:
regasm /tlb:shutdownprocess.tlb shutdownprocess.dll
Thank you!