conversion of 32bit addin to 64bit

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have also been tasked with upgrading an Inventor Addin created for a 32bit XP to use for 64bit Windows 7 and Inventor 2013. I have converted the programs for VS2010 and the compiles Setup works fine for 32 bit, but not for the 64bit machines. The present Installer class in the program does use Registration Services which register the dll incorrectly for the 64 bit machines (this I have gleened from other posts), but I still do not understand how to modify the code to create a Setup which will use the 64bit framework regasm.
The Install Sub (Uninstall looks sim):
PublicOverridesSub Install(ByVal stateSaver As System.Collections.IDictionary)
MyBase.Install(stateSaver)
Dim regSrv AsRegistrationServices = NewRegistrationServices()
regSrv.RegisterAssembly(MyBase.GetType().Assembly, AssemblyRegistrationFlags.SetCodeBase)
EndSub
I have also attempted removing this install/uninstall code and registering the dll manually using regasm with little luck.
Any help or direction would be appreciated. THANK YOU