Esempio n. 1
0
        DotNetExecutionCommand ConvertCommand(ExecutionCommand cmd)
        {
            var dotNetCoreExecutionCommand = cmd as DotNetCoreExecutionCommand;

            if (dotNetCoreExecutionCommand != null)
            {
                dotNetCoreExecutionCommand.AllowCoreClrDebugging = true;
                return(DotNetCoreExecutionHandler.ConvertCommand(dotNetCoreExecutionCommand));
            }

            return(null);
        }
        public override DebuggerStartInfo CreateDebuggerStartInfo(ExecutionCommand c)
        {
            var dotNetCommand = DotNetCoreExecutionHandler.ConvertCommand((DotNetCoreExecutionCommand)c);

            return(base.CreateDebuggerStartInfo(dotNetCommand));
        }