InventorShims 1.1.2
See the version list below for details.
dotnet add package InventorShims --version 1.1.2
NuGet\Install-Package InventorShims -Version 1.1.2
<PackageReference Include="InventorShims" Version="1.1.2" />
paket add InventorShims --version 1.1.2
#r "nuget: InventorShims, 1.1.2"
// 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:
- Include the InventorShims nuget package in your .net project.
- 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.
- Clone this repo and building the dll yourself.
- Copy out the methods, classes, or modules that are useful and including those in your own code.
- 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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net47 is compatible. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
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.
Removed stubborn ILMerge dependency, for real this time.