Remora / Remora.Discord

A data-oriented C# Discord library, focused on high-performance concurrency and robust design.
GNU Lesser General Public License v3.0
243 stars 46 forks source link

Add overload of AddDiscordService for use with HostApplicationBuilder #263

Closed reflectronic closed 1 year ago

reflectronic commented 1 year ago

.NET 7 adds a new HostApplicationBuilder API in the style of the simplified WebApplicationBuilder from ASP.NET Core 6. It does not implement IHostBuilder, so the existing extension that adds the Remora hosted service does not work with it. The recommended pattern for HostApplicationBuiler is to add an extension method for IServiceCollection (builder.Services.AddDiscordService(...)).