You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NOTE: The 'Test With > In-Proc' command will pass the current DTE (Visual Studio) object to "Ad hoc" test methods that take DTE (or DTE2) as a parameter.
You can currently get this object using 'Test With > In-Proc' on a method like this:
voidgo(){vardte=(DTE)AppDomain.CurrentDomain.GetData("DTE");Console.WriteLine("Hello, Visual Studio "+dte.Edition);}
It would be nice if you could do this instead:
voidgo(DTEdte){Console.WriteLine("Hello, Visual Studio "+dte.Edition);}
The text was updated successfully, but these errors were encountered:
NOTE: The 'Test With > In-Proc' command will pass the current
DTE
(Visual Studio) object to "Ad hoc" test methods that takeDTE
(orDTE2
) as a parameter.You can currently get this object using 'Test With > In-Proc' on a method like this:
It would be nice if you could do this instead:
The text was updated successfully, but these errors were encountered: