cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
tfojvdl
Level 4

Order of .NET file registration

Hello,
I have a Basic MSI-Project and I need to register two .NET dll in a specific order. I can manage to register, but I don´t know how to change the order...
Can anyone help?

Thanks
Jürgen
Labels (1)
0 Kudos
(2) Replies
GetExp
Level 6

If you navigate to the Direct editor, there is a table called IsSelfReg... InstallShield provides an option to register your files that are marked in this IsSelfReg table. Here you can specify the order of the registration of the files.... Let me know if this helps./..
0 Kudos
Christopher_Pai
Level 16

IsSelfReg is for unmanaged DLL's that export DllRegisterServer() DllUnRegisterServer() functions. .NET assemblies, even those that are marked as ComVisible(true) do not export this. For those you mark the component as COM so that the compiler will run RegAsm and use the output to populate the registry table.
0 Kudos