Message 1 of 5
Custom Inventor Add-In from 2018 no longer loads in 2020

Not applicable
01-22-2020
12:19 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Since upgraded to Inventor 2020, only one of my custom tools has failed to load. When I go to manually change it to load, it switched back to unloaded when I open the add-ins menu to check it.
Here is my .addin file, which is located at C:\ProgramData\Autodesk\Inventor Addins
I place SampleTool.dll directly into C:\Program Files\Autodesk\Inventor 2020\Bin
<Addin Type="Standard"> <!--Created for Autodesk Inventor Version 22.0--> <ClassId>{bc210232-db1f-4e35-9c46-6f8ec8d2752a}</ClassId> <ClientId>{bc210232-db1f-4e35-9c46-6f8ec8d2752a}</ClientId> <DisplayName>SampleTool</DisplayName> <Description>SampleTool</Description> <Assembly>SampleTool.dll</Assembly> <LoadOnStartUp>1</LoadOnStartUp> <UserUnloadable>1</UserUnloadable> <Hidden>0</Hidden> <SupportedSoftwareVersionGreaterThan>21..</SupportedSoftwareVersionGreaterThan> <DataVersion>1</DataVersion> <UserInterfaceVersion>1</UserInterfaceVersion> </Addin>
Here is my .manifest file before I complied the tool.
<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <assemblyIdentity name="SampleTool" version="1.0.0.0"></assemblyIdentity> <clrClass clsid="{bc210232-db1f-4e35-9c46-6f8ec8d2752a}" progid="SampleTool.StandardAddInServer" threadingModel="Both" name="SampleTool.SampleTool.StandardAddInServer" runtimeVersion=""></clrClass> <file name="SampleTool.dll" hashalg="SHA1"></file> </assembly>
I have not been able to get this add in to load, on any of the computers in our office. Does anyone have any idea of why this would happen?