Dynamo
Dynamo copied to clipboard
CER API
https://jira.autodesk.com/browse/DYN-4679
Provide a way for host integrators to set the CER (crash report tool) location so that it does not need to be found on disk automatically (which may cause performance issues...or may not be found).
Proposed API usage:
- In process:
Implement the new interfaceIStartConfigCrashReporter
expublic interface IRevitStartConfiguration : IStartConfiguration, IStartConfigCrashReporter { } public struct RevitStartConfiguration : IRevitStartConfiguration { public CrashReporterStartupOptions CRStartConfig { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } }
- Out of process:
Use the cli arguments
cr
(ex. dynamosandbox.exe cr = C:/Program Files/Autodesk/Revit)