Debugging from Rhino.Inside.Revit

Hi all,

Is there a method for running the Visual Studio debugger while in Rhino.Inside.Revit.

We have a custom component that is functioning differently in RiR compared to native Rhino.

Any thoughs?

Open your plugin solution on Visual Studio and go to the ‘Debug’ section in your project.
Replace Rhino.exe path by your Revit.exe path like this.

Then you should be able to place break points on your source code and debug.

1 Like

Great, thanks for this @kike!!