Debugging Autodesk Inventor Addin using Visual Studio


Watch High Resolution video on AR-CAD

If you have followed my earlier screen casts on Developing Inventor Addin using C# (Visual Studio) here and here, I had not touched anything on How to debug an Addin using Visual Studio. When you build / register an Addin, a DLL (Dynamic Link Library) file is created which Inventor identifies as an Addin. To be able to debug an Addin, you have to step into Inventor Process. This can be done as follows.

If you are using a free version of Microsoft Visual Basic (Express Edition), it does not have a debugging option for COM objects out of the box. This can be done with the following work around / trick

  • Create a file with a name <yourAddinDllName>.csproj.user (In my case, it is AR-CADInventorAddIn4.csproj.user
  • Put the following content into this file (The only thing that could probably change is the location of your Inventor.exe file)

<Project xmlns=”http://schemas.microsoft.com/developer/msbuild/2003″>

<PropertyGroup Condition=” ‘$(Configuration)|$(Platform)’ == ‘Debug|AnyCPU’ “>

<StartAction>Program</StartAction>

<StartProgram>C:Program FilesAutodeskInventor 2008BinInventor.exe</StartProgram>

</PropertyGroup>

<PropertyGroup>

<ProjectView>ShowAllFiles</ProjectView>

</PropertyGroup>

</Project>

  • Close the solution and open it again. By doing this, the .csproj.user file is associated with the project.
  • Insert a “Break Point” in your code and Start Debugging by hitting F5 key.
  • Now Inventor gets started and you are halted at the break point. Use Step Through and Step Into to inspect different objects, by hovering the mouse over the objects.
  • When you are done with Debugging, your addin would load up and hence Inventor is loaded completely. You can also insert break points when you click on a Custom Button , your addin has created when the Inventor is loaded completely.

If you happen to have a Visual Studio Professional version, there is no need to create the .csproj.user file, you can follow these instructions to get the debugger working.

  • Right Click on your addin project. Go to its properties.
  • Go to Debug Tab listed in the left side of this dialog.
  • Set Configuration = Debug , Platform = Any CPU
  • Set Start External Program to the location pointing to Inventor.exe
  • Close the properties Dialog box
  • In the Solutions Explorer, click on an icon “Show All Files”
  • Carry on with your debugging session as explained above and also in the screencast

I hope things are pretty much clear, if there are any queries, I would love to hear them in the form of comments.

3 thoughts on “Debugging Autodesk Inventor Addin using Visual Studio

  1. Hello!

    Thanks for your demonstration of debugging Inventor AddIn with Visual Studio!

    I tried to debug simple addin (it didn’t contain any operation code, only an addin-project using an Autodesk Inventor template assembled by a wizard from Autodesk Inventor Developer page).

    I am using the Visual Basic 2008 Express (Visual Studio 2008) and Autodesk Inventor 2010. I added that file (I replaced a path of Inventor 2010 location) to my project and saved and re-opened the project. Then I set a brake-point to one of the first rows in a StandardAddInServer.vb -file.

    After that I choosed F5 or F8. Then appeared next message:


    A project with an Output Type Class Library cannot be started directly.

    In order to debug this project, add an executable project to this solution which references the library project. Set the executable project as the start up project.

    What should I do to get the debugging to run? Should I really create the executable project that adviced?

    Best Regards,
    TNi

  2. Hi Tomas,
    I am glad the tutorials are useful to you.

    With regard to the error you are getting, you need to do do the following:

    In Visual Studio, go to your project properties (Project > projectName Properties). To the left, you would see “Debug” tab. Under “Start Action”, select “Start External Program” and give the file path to Inventor.exe.

    In my case, the file path is “C:Program FilesAutodeskInventor 2010BinInventor.exe”

    Now, if you use F5 key, your addin will run in Debug mode.

    Please let me know if you still have problems with it.

    Regards,
    Rajeev

Leave a Reply

Your email address will not be published. Required fields are marked *