public static bool CanDebugFile(this ProjectOperations opers, string file)
        {
            ExecutionContext context = new ExecutionContext(DebuggingService.GetExecutionHandler(), IdeApp.Workbench.ProgressMonitors);

            return(opers.CanExecuteFile(file, context));
        }
Esempio n. 2
0
        public static bool CanDebugFile(this ProjectOperations opers, string file)
        {
            var context = new ExecutionContext(DebuggingService.GetExecutionHandler(), IdeApp.Workbench.ProgressMonitors.ConsoleFactory, IdeApp.Workspace.ActiveExecutionTarget);

            return(opers.CanExecuteFile(file, context));
        }