项目文件夹下,Autodesk.项目名称.addin 文件
<Addin Type="Standard">
<!--Created for Autodesk Inventor Version 27.0-->
<ClassId>{0e0cc99f-dee8-4403-97aa-76c923346a34}</ClassId>
<ClientId>{0e0cc99f-dee8-4403-97aa-76c923346a34}</ClientId>
<DisplayName>项目名称</DisplayName>
<Description>项目名称</Description>
<Assembly>项目名称.dll</Assembly>
<LoadOnStartUp>1</LoadOnStartUp>
<UserUnloadable>1</UserUnloadable>
<Hidden>0</Hidden>
<SupportedSoftwareVersionGreaterThan>26..</SupportedSoftwareVersionGreaterThan>
<DataVersion>1</DataVersion>
<UserInterfaceVersion>1</UserInterfaceVersion>
</Addin>
//属性的含义
<ClassId> 和 <ClientId>:指定用于标识 Add-In 的唯一 ID。
<DisplayName>:指定 Add-In 的显示名称,用于在 Inventor 中显示。
<Description>:指定 Add-In 的描述。
<Assembly>:指定 Add-In 的程序集文件名,即 项目名称.dll。
<LoadOnStartUp>:指定是否在 Inventor 启动时加载该 Add-In。这里设置为 1,表示在启动时加载。
<UserUnloadable>:指定是否允许用户在 Inventor 运行时卸载该 Add-In。这里设置为 1,表示允许用户卸载。
<Hidden>:指定是否在 Inventor 插件管理器中隐藏该 Add-In。这里设置为 0,表示不隐藏。
<SupportedSoftwareVersionGreaterThan>:指定支持的 Inventor 版本范围。这里设置为 26..,表示支持版本号大于等于 26。
<DataVersion> 和 <UserInterfaceVersion>:指定 Add-In 的数据版本和用户界面版本。
SupportedSoftwareVersionGreaterThan属性对应的版本如下
26
:Autodesk Inventor 202027
:Autodesk Inventor 202128
:Autodesk Inventor 202229
:Autodesk Inventor 2023
可以依此类推
所有如果需要兼容2020前的,SupportedSoftwareVersionGreaterThan需要小于26