Esempio n. 1
0
        public async Task <IReadOnlyList <IDebugLaunchSettings> > QueryDebugTargetsAsync(DebugLaunchOptions launchOptions, ILaunchProfile profile)
        {
            // NOTE: This method is called from the main (UI) thread and must remain on that thread!
            if (profile.IsSnapshotDebuggerProfile())
            {
                IVsDebugger dbg = ServiceProvider.GetService(typeof(IVsDebugger)) as IVsDebugger;
            }

            return(new List <IDebugLaunchSettings>());
        }
Esempio n. 2
0
 public bool SupportsProfile(ILaunchProfile profile)
 {
     return(profile.IsSnapshotDebuggerProfile());
 }