Message 1 of 3
Deploying a Revit Plug-in
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Does anyone have any good examples of how to deploy a Revit plug-in (ExternalApplication)? Specifically I'd like to know the best way to deal with changing paths to either the ribbon button images, and or the DLLs which contain the IExternalCommand classes.
I figure I could use System.Reflection.Assembly.GetExecutingAssembly(), to find the location of the currently executing assembly and then either put all the Commands in the same file as the External Application classes, or know where to find any other files relative to this path.
Is this the best or at least typical way this is done?
I figure I could use System.Reflection.Assembly.GetExecutingAssembly(), to find the location of the currently executing assembly and then either put all the Commands in the same file as the External Application classes, or know where to find any other files relative to this path.
Is this the best or at least typical way this is done?