Does Reg-Free COM work with Interop?
What is the consensus here?
I have a VB6 app using Interop to utilise .NET开发者_如何学Python assemblies. Could I use Reg-Free COM to 'register' the .NET assemblies?
Yes, you can. First you create & embed the .NET assembly manifest (the one containing assemblyIdentity
) then in the VB6 exe manifest you "reference" it with dependentAssembly
tag.
Unattended MMM generates (and embeds) both manifests.
精彩评论