Dynamo icon indicating copy to clipboard operation
Dynamo copied to clipboard

CER API

Open pinzart90 opened this issue 2 years ago • 0 comments

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:

  1. In process:
    Implement the new interface IStartConfigCrashReporter ex
       public interface IRevitStartConfiguration : IStartConfiguration, IStartConfigCrashReporter
         {
         }
    
         public struct RevitStartConfiguration : IRevitStartConfiguration
         {
             public CrashReporterStartupOptions CRStartConfig { get => throw new NotImplementedException(); set => throw new NotImplementedException(); }
         }
    
  2. Out of process: Use the cli arguments cr (ex. dynamosandbox.exe cr = C:/Program Files/Autodesk/Revit)

pinzart90 avatar Aug 09 '22 19:08 pinzart90