Message 1 of 5
unable to disable warning for missing third party updater in Revit MEP 2016

Not applicable
04-04-2016
07:09 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I'm using a LiveUpdater in my plugin that causes the warning "missing third party updater" when my clients open the project on their computers since they do not have the plugin installed. I need to disable this and have tried the following to set the LiveUpdater as optional which according to the API documentation should disable the warning:
UpdaterRegistry.RegisterUpdater(liveUpdater, true);
and
UpdaterRegistry.RegisterUpdater(liveUpdater); UpdaterRegistry.SetIsUpdaterOptional(liveUpdater.GetUpdaterId(), true);
but I'm still getting the warning after "uninstalling" the plugin by removing the plugin .dll and .addin files from C:\Users\mma\AppData\Roaming\Autodesk\Revit\Addins\2016.
during debugging the following call returns true:
UpdaterRegistry.GetIsUpdaterOptional(liveUpdater.GetUpdaterId())
I even tried to use "false" instead of "true" as argument in case I missunderstood the documentation but it didn't work either.
Is this a bug or am I missing something here?