Creating your first Revit plugin
Our scope is to focus the activities on building a data connector from Revit to Power BI. According to this, we are going to use our basic template provided with the GitHub repository. The template gives you a new, ready-to-use Revit toolbar with four sample commands. It's not important how to build that project from scratch, but if you are interested in learning more about Revit plugin fundamentals, I suggest you start with the official documentation at the following URL:
At this point, the first thing to do is to set up the environment. This is fundamental in any development software such as Visual Studio. We need to know how to let Visual Studio import the Revit API required to complete the plugin. Let's go.
Understanding the environment
How can we implement software capabilities? How does a plugin work...