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
Refactor HostApplicationLifetime retrieval and registration
Simplified and improved the retrieval and registration of the
HostApplicationLifetime service in BotApp.cs and BotBuilder.cs.
In BotApp.cs, the code now retrieves IHostApplicationLifetime
and casts it to HostApplicationLifetime, throwing an
InvalidOperationException if the cast fails. In BotBuilder.cs,
the registration of HostApplicationLifetime has been simplified
by removing the factory method and directly registering the
service. These changes enhance the robustness and clarity of
the code.