File tree Expand file tree Collapse file tree
VisualStudioDiscordRPC.Shared/Variables Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- using EnvDTE ;
1+ using EnvDTE80 ;
22
33namespace VisualStudioDiscordRPC . Shared . Variables
44{
55 public class EditionVariable : Variable
66 {
77 private readonly string _edition ;
88
9- public EditionVariable ( DTE dte )
9+ public EditionVariable ( DTE2 dte )
1010 {
1111 Microsoft . VisualStudio . Shell . ThreadHelper . ThrowIfNotOnUIThread ( ) ;
1212 _edition = dte . Edition ;
Original file line number Diff line number Diff line change 1- using EnvDTE ;
1+ using EnvDTE80 ;
22using VisualStudioDiscordRPC . Shared . Utils ;
33
44namespace VisualStudioDiscordRPC . Shared . Variables
@@ -7,7 +7,7 @@ public class VersionVariable : Variable
77 {
88 private readonly string _version ;
99
10- public VersionVariable ( DTE dte )
10+ public VersionVariable ( DTE2 dte )
1111 {
1212 Microsoft . VisualStudio . Shell . ThreadHelper . ThrowIfNotOnUIThread ( ) ;
1313 _version = dte . Version ;
You can’t perform that action at this time.
0 commit comments