using System.Collections.Generic; namespace Microsoft.Iris.Debug { public class DebugSettings { public bool UseDecompiler { get; set; } = false; public bool OpenDebugPipe { get; set; } = false; public List DecompileResults { get; } = new List(); public TraceSettings TraceSettings { get; } = TraceSettings.Current; #if OPENZUNE public bool GenerateDataMappingModels { get; set; } = true; public List DataMappingModels { get; } = new List(); #endif public Bridge Bridge { get; } = #if OPENZUNE new(OwlCore.Remoting.RemotingMode.Host); #else new(); #endif } }