Files
MicrosoftIris/UIX/Microsoft/Iris/Debug/DebugSettings.cs
T

24 lines
786 B
C#

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;
public bool GenerateDataMappingModels { get; set; } = true;
public List<(string Provider, string Type, string Code)> DataMappingModels { get; }
= new List<(string Provider, string Type, string Code)>();
public Bridge Bridge { get; } =
#if OPENZUNE
new(OwlCore.Remoting.RemotingMode.Host);
#else
new();
#endif
}
}