Loading
  • 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./..
  • 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.

Loading
Order of .NET file registration