Replacement for dTE.Events.DTEEvents.OnStartupComplete #395
Answered
by
reduckted
scottcantwell
asked this question in
Q&A
-
For some reason, this is event is no longer being hooked up. Is there a replacement for the Startup Event for VS in the Toolkit?
|
Beta Was this translation helpful? Give feedback.
Answered by
reduckted
Dec 3, 2022
Replies: 1 comment 1 reply
-
It depends on what you're trying to achieve. Extensions are loaded asynchronously, so it's very likely that the IDE has finished loading by the time your extension starts loading. What were you doing in that event handler that couldn't be done sooner? |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
scottcantwell
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It depends on what you're trying to achieve. Extensions are loaded asynchronously, so it's very likely that the IDE has finished loading by the time your extension starts loading.
What were you doing in that event handler that couldn't be done sooner?