views:

251

answers:

1

I am currently required to open and use a .NET assembly in delphi. The Assembly that i am trying to use also has an assembly of objects it is using. With the object assembly i was able to use regasm to create a type library. I was also able to assign a SN and register it with the GAC.

Now with the main assembly i am tyring to use in Delphi, i try using regasm and i end up getting an error "Regasm : error RA0000 : Unable to locate input assembly [location] or one of its dependencies." I have looked over the location and file name and there is nothing wrong. Am i missing a step somewhere?

+1  A: 

Are you sure all the assemblies your assembly references are in the GAC?

Lars Truijens