2022-06-06 23:10:30 -05:00
|
|
|
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<System.Xml.XmlDocument> DecompileResults { get; } = new List<System.Xml.XmlDocument>();
|
|
|
|
|
public TraceSettings TraceSettings { get; } = TraceSettings.Current;
|
2022-06-07 14:30:29 -05:00
|
|
|
|
2022-06-12 21:21:29 -05:00
|
|
|
#if OPENZUNE
|
|
|
|
|
public bool GenerateDataMappingModels { get; set; } = true;
|
|
|
|
|
public List<string> DataMappingModels { get; } = new List<string>();
|
|
|
|
|
#endif
|
|
|
|
|
|
2022-06-07 14:30:29 -05:00
|
|
|
public Bridge Bridge { get; } =
|
2022-06-09 19:04:59 -05:00
|
|
|
#if OPENZUNE
|
2022-06-07 14:30:29 -05:00
|
|
|
new(OwlCore.Remoting.RemotingMode.Host);
|
|
|
|
|
#else
|
|
|
|
|
new();
|
|
|
|
|
#endif
|
2022-06-06 23:10:30 -05:00
|
|
|
}
|
|
|
|
|
}
|