Switched to DebugSettings

This commit is contained in:
Yoshi Askharoun
2022-06-06 23:10:30 -05:00
parent c1fe12288c
commit 8cb0b9dfdf
5 changed files with 17 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
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;
}
}