File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 22using System . Linq ;
33using FineCodeCoverage ;
44using System . Diagnostics ;
5- using Microsoft . VisualStudio ;
65using System . Collections . Generic ;
76using Microsoft . VisualStudio . Shell ;
87using System . Diagnostics . CodeAnalysis ;
98using Microsoft . VisualStudio . Shell . Interop ;
109using System . ComponentModel . Composition ;
1110using Microsoft ;
12- using EnvDTE ;
1311using Task = System . Threading . Tasks . Task ;
12+ using EnvDTE80 ;
1413
1514interface IShowFCCOutputPane
1615{
@@ -22,7 +21,7 @@ public class Logger : ILogger, IShowFCCOutputPane
2221{
2322 private IVsOutputWindowPane _pane ;
2423 private IVsOutputWindow _outputWindow ;
25- private DTE dte ;
24+ private DTE2 dte ;
2625 private readonly IServiceProvider _serviceProvider ;
2726 private Guid fccPaneGuid = Guid . Parse ( "3B3C775A-0050-445D-9022-0230957805B2" ) ;
2827
@@ -43,7 +42,7 @@ private void SetPane()
4342 await ThreadHelper . JoinableTaskFactory . SwitchToMainThreadAsync ( ) ;
4443 _outputWindow = ( IVsOutputWindow ) _serviceProvider . GetService ( typeof ( SVsOutputWindow ) ) ;
4544 Assumes . Present ( _outputWindow ) ;
46- dte = ( EnvDTE . DTE ) _serviceProvider . GetService ( typeof ( EnvDTE . DTE ) ) ;
45+ dte = ( DTE2 ) _serviceProvider . GetService ( typeof ( EnvDTE . DTE ) ) ;
4746 Assumes . Present ( dte ) ;
4847
4948 // Create a new pane.
You can’t perform that action at this time.
0 commit comments