Autodesk.Inventor.Sdk 2.0.1

dotnet add package Autodesk.Inventor.Sdk --version 2.0.1
                    
NuGet\Install-Package Autodesk.Inventor.Sdk -Version 2.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Autodesk.Inventor.Sdk" Version="2.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Autodesk.Inventor.Sdk" Version="2.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Autodesk.Inventor.Sdk" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Autodesk.Inventor.Sdk --version 2.0.1
                    
#r "nuget: Autodesk.Inventor.Sdk, 2.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Autodesk.Inventor.Sdk@2.0.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Autodesk.Inventor.Sdk&version=2.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Autodesk.Inventor.Sdk&version=2.0.1
                    
Install as a Cake Tool

Autodesk Inventor SDK

This package provides Inventor API assemblies with version targeting support.

Supported versions:

  • Inventor 2025
  • Inventor 2026
  • Inventor 2027

Requirements

  • .NET 8.0 or higher

Usage

Add these properties to your .csproj file:

<PropertyGroup>
  <InventorVersion>2027</InventorVersion>
  <CopyInventorFiles>false</CopyInventorFiles>
</PropertyGroup>

Available Properties

Property Default Description
InventorVersion '2027' Inventor version to target (2025, 2026, 2027)
CopyInventorFiles false Copy main Inventor DLLs to output directory
CopyILogicFiles false Copy iLogic DLLs to output directory

Example

<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <TargetFramework>net8.0</TargetFramework>
    <InventorVersion>2027</InventorVersion>
    <CopyInventorFiles>true</CopyInventorFiles>
  </PropertyGroup>

  
<PropertyGroup>
  <InventorVersion>2027</InventorVersion>
  <UseILogic>true</UseILogic>
  <CopyILogicFiles>true</CopyILogicFiles>
</PropertyGroup>
  
  <ItemGroup>
    <PackageReference Include="Autodesk.Inventor.Sdk" Version="2.0.0" />
  </ItemGroup>
</Project>
Product Compatible and additional computed target framework versions.
native native is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net8.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.1 115 4/22/2026
2.0.0 148 3/31/2026
1.0.3 371 10/9/2025