InventorShims 1.1.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package InventorShims --version 1.1.2
NuGet\Install-Package InventorShims -Version 1.1.2
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="InventorShims" Version="1.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add InventorShims --version 1.1.2
#r "nuget: InventorShims, 1.1.2"
#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.
// Install InventorShims as a Cake Addin
#addin nuget:?package=InventorShims&version=1.1.2

// Install InventorShims as a Cake Tool
#tool nuget:?package=InventorShims&version=1.1.2

InventorShims

About

This is an unofficial collection of extension APIs for Autodesk Inventor. The goal is to present developers and iLogic users with the following:

  • Code that promises to be routinely and consistently useful,
  • Additional API functionality that is not included in Inventor's public APIs, or
  • Improved functionality of stock API objects/methods. This may include:
    • simplified access to API objects, functions, and values,
    • functions designed to reduce boilerplate code,
    • more advanced management of API objects, and
    • better error handling outcomes. E.g. an example is an iproperty access method that will not throw an exception when a non-present property is accessed.

The minimum supported version of Inventor will be 2020.

Documentation

Find the detailed API Documentation at InventorShims API Docs. This documentation is built using DocFX; the documentation source is at /docfx/.

For general documentation see the Quick-Start Guide.

Getting Started

First off, you'll want to download or build a copy of the InventorShims.dll file. There are several options available:

  1. Include the InventorShims nuget package in your .net project.
  2. Visit the Releases page and downld the compiled InventorShims.dll and referenceit in your Inventor iLogic or add-in code. This will allow you to access the entirety of the InventorShims API.
  3. Clone this repo and building the dll yourself.
  4. Copy out the methods, classes, or modules that are useful and including those in your own code.
  5. Use the code in this package as reference material or examples.

How to Use

  • For iLogic, add the following code in your iLogic rule header:

    AddReference "C:\Path\To\File\InventorShims.dll"
    Imports InventorShims
    
    'Add your code here, include InventorShims API functions as you need...
    
  • For add-in development, add the InventorShims.dll as a reference to your project.

  • Visit the InventorShims API Documentation for a more detailed guide.

License

This code is under an MIT license.

Product Compatible and additional computed target framework versions.
.NET Framework net47 is compatible.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has 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.0 608 1/20/2022
1.3.1 365 9/3/2021
1.2.0 338 8/15/2021
1.1.2 345 2/14/2021
1.1.1 337 2/12/2021
1.1.0 324 2/12/2021

Removed stubborn ILMerge dependency, for real this time.