• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Inventor Customization

    Reply
    Active Member
    Posts: 7
    Registered: ‎07-11-2012
    Accepted Solution

    Autodesk Inventor Wizards for Microsoft Visual Studio 2012 express ?

    619 Views, 3 Replies
    09-26-2012 05:28 AM

    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?

    Please use plain text.
    Distinguished Contributor
    Posts: 132
    Registered: ‎04-14-2005

    Re: Autodesk Inventor Wizards for Microsoft Visual Studio 2012 express ?

    10-02-2012 10:28 PM in reply to: vladiksun

    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-extract-files-from-msi-package.

     

    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. 

    Rodney Thomas
    Design Engineer / Programmer
    A & A Manufacturing

    Support a Q & A For CAD Users: Stack Exchange Proposal
    Please use plain text.
    Distinguished Contributor
    Posts: 132
    Registered: ‎04-14-2005

    Re: Autodesk Inventor Wizards for Microsoft Visual Studio 2012 express ?

    10-02-2012 10:59 PM in reply to: vladiksun

    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.

    Rodney Thomas
    Design Engineer / Programmer
    A & A Manufacturing

    Support a Q & A For CAD Users: Stack Exchange Proposal
    Please use plain text.
    Active Member
    Posts: 7
    Registered: ‎07-11-2012

    Re: Autodesk Inventor Wizards for Microsoft Visual Studio 2012 express ?

    10-10-2012 06:41 AM in reply to: rjay75

    Thank you so much for help Thomas!

    Please use plain text.