update to .net 9

This commit is contained in:
sam 2024-11-19 00:10:12 +01:00
parent e8feedb979
commit 48a11be7b7
Signed by: sam
GPG key ID: 5F3C3C1B3166639D
9 changed files with 99 additions and 173 deletions

View file

@ -45,18 +45,17 @@ public class CustomInteractionResponder(
{
private readonly ILogger _logger = logger.ForContext<CustomInteractionResponder>();
private readonly InteractionResponder _inner =
new(
commandService,
options,
interactionAPI,
eventCollector,
services,
contextInjection,
tokenizerOptions,
treeSearchOptions,
treeNameResolver
);
private readonly InteractionResponder _inner = new(
commandService,
options,
interactionAPI,
eventCollector,
services,
contextInjection,
tokenizerOptions,
treeSearchOptions,
treeNameResolver
);
public async Task<Result> RespondAsync(
IInteractionCreate gatewayEvent,