Reputation: 3
I've been developing an application for Revit 2019-2022. The app I've made works in all versions apart from 2022, theres no clear error message.
The API has changed with every different Revit version released, I've checked whats changed but I can't seem to find anything that has with what I'm using.
There are multiple applications being loaded in, but this is the only one that doesn't seem to work.
Upvotes: 0
Views: 203
Reputation: 8339
I would suggest following some of the standard steps for debugging such a problem. One easy and reliable approach is to implement a brand new minimal skeleton add-in for Revit 2022 following the Hello World
instructions in the Revit Developer Guide for the Revit 2022 API. Ensure that it loads and executes as expected, then transfer your existing add-in functionality to it piece by small piece. If it breaks at some point, you will be able to isolate the problem. If it does not break, your problem is solved. Good luck!
Upvotes: 1