Add-In compatibility with elder versions of Inventor

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hey Inventor masters,
I've written an Add-in for Inventor using the Inventor 2018 Add-In template from the SDK that was delivered with the installation of inventor 2018.
The add-in i've written is meant for corporate use and the corporation that i wrote it for still uses Inventor 2017. When i transfer the Add-in from my personal laptop to the workstations it says the add-inn stays unloaded (even after loading it manually). Is there a way of 'downgrading' the inventor dependency so that it also works on the 2017 version?
I've tried installing the 2017 SDK template but it says i can't because a newer version was already installed. There is no uninstal button (at least not that i found) to uninstall the 2018 template and install the 2017 template and copy the code?
My *.addin file:
<Addin Type="Standard"> <!--Created for Autodesk Inventor Version 22.0--> <ClassId>{230cac1d-5709-4684-817a-5f95cf1ab8ee}</ClassId> <ClientId>{230cac1d-5709-4684-817a-5f95cf1ab8ee}</ClientId> <DisplayName>InventorAddIn2</DisplayName> <Description>InventorAddIn2</Description> <Assembly>InventorAddIn2.dll</Assembly> <LoadOnStartUp>1</LoadOnStartUp> <UserUnloadable>1</UserUnloadable> <Hidden>0</Hidden> <SupportedSoftwareVersionGreaterThan>20..</SupportedSoftwareVersionGreaterThan> <DataVersion>1</DataVersion> <UserInterfaceVersion>1</UserInterfaceVersion> </Addin>