Autodesk Inventor Customization
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Autodesk Inventor Wizards for Microsoft Visual Studio 2012 express ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Hello,
I am a novice in Inventor customization. I have already MS visual c# and vb.net 2010 express editions installed on my computer. As you know 2010 express editions have to be installed as a separate software.
I decided to try new MS 2012 visual studio express edition the other day. 2012 version is very comfortable to use because it allows to make vb.net, c#, C++ projects. Actually I use c# as the main language to study and vb.net as the secondary. The problem is that Autodesk Inventor Wizard installation package (Inventor 2013) doesn't work with MS visual studio 2012 express edition, therefore there is no Inventor AddIn template in Visual studio project creation window.
Does anybody has any ideas how to install Autodesk Inventor Wizard from Autodesk SDK package over MS Visual studio 2012? Is there any manual approaches to do that and how it will work?
Solved! Go to Solution.
Re: Autodesk Inventor Wizards for Microsoft Visual Studio 2012 express ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I recently was trying to do the same thing with Visual Studio 2012. Got it to extract the template an install.
Download the DeveloperTools msi. Extract the files using this method. http://superuser.com/questions/307678/how-to-extra
Copy the file VCSInventorAddInTemplate2013.zip to this location C:\Users\{USER NAME}\Documents\Visual Studio 2012\Templates\ProjectTemplates\Visual C#.
When you restart Visual Studio the template should be there.
Design Engineer / Programmer
A & A Manufacturing
Support a Q & A For CAD Users: Stack Exchange Proposal
Re: Autodesk Inventor Wizards for Microsoft Visual Studio 2012 express ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
One more thing. Go to the properties of the project.
Change the command on the build events tab in the Post build events command line.
call "%VS100COMNTOOLS%vsvars32"
mt.exe -manifest "$(ProjectDir){Project Name}.X.manifest" -outputresource:"$(TargetPath)";#2
call "%VS110COMNTOOLS%vsvars32"
mt.exe -manifest "$(ProjectDir){Project Name}.X.manifest" -outputresource:"$(TargetPath)";#2
This is the line that copies the addin manifest.
Design Engineer / Programmer
A & A Manufacturing
Support a Q & A For CAD Users: Stack Exchange Proposal
Re: Autodesk Inventor Wizards for Microsoft Visual Studio 2012 express ?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Thank you so much for help Thomas!

