Exemplo n.º 1
0
 // Token: 0x0600003A RID: 58 RVA: 0x00002A0F File Offset: 0x00000C0F
 public StartInfo(SoftDebuggerStartArgs start_args, DebuggingOptions options, Project startupProject) : base(start_args)
 {
     this.StartupProject = startupProject;
     this.Options        = options;
     this.SessionOptions = this.CreateDebuggerSessionOptions();
     this.GetUserAssemblyNamesAndMaps();
 }
Exemplo n.º 2
0
 public CryEngineStartInfo(SoftDebuggerStartArgs args, DebuggingOptions options, Project startupProject, CryEngineProjectData projectData, LauncherType launcherType)
     : base(args, options, startupProject)
 {
     ProjectData  = projectData;
     LauncherType = launcherType;
 }
Exemplo n.º 3
0
 public MonoSampleStartInfo(SoftDebuggerStartArgs args, DebuggingOptions options, Project startupProject) : base(args, options, startupProject)
 {
 }
 public XamarinWindowsStartInfo(SoftDebuggerStartArgs args, DebuggingOptions options, Project startupProject) : base(args, options, startupProject)
 {
 }
 public MeadowSoftDebuggerStartInfo(MeadowExecutionCommand cmd, SoftDebuggerStartArgs args)
     : base(args)
 {
     ExecutionCommand = cmd;
 }