From 35dbc5f0e3182a3bd165960b459933ae20e3da27 Mon Sep 17 00:00:00 2001 From: Jicheng Lu <103353@smsassist.com> Date: Tue, 18 Aug 2026 12:02:43 -0500 Subject: [PATCH] Fix PizzaBot solution compilation --- src/WebStarter/WebStarter.csproj | 5 +++-- .../BotSharp.Plugin.PizzaBot.csproj | 6 +----- tests/BotSharp.Plugin.PizzaBot/Hooks/PizzaBotAgentHook.cs | 4 ---- 3 files changed, 4 insertions(+), 11 deletions(-) diff --git a/src/WebStarter/WebStarter.csproj b/src/WebStarter/WebStarter.csproj index 7af0d2ce5..e64872da6 100644 --- a/src/WebStarter/WebStarter.csproj +++ b/src/WebStarter/WebStarter.csproj @@ -9,6 +9,7 @@ + @@ -35,6 +36,7 @@ + @@ -46,7 +48,6 @@ - @@ -96,4 +97,4 @@ - \ No newline at end of file + diff --git a/tests/BotSharp.Plugin.PizzaBot/BotSharp.Plugin.PizzaBot.csproj b/tests/BotSharp.Plugin.PizzaBot/BotSharp.Plugin.PizzaBot.csproj index 0868b3460..4cdaa5d54 100644 --- a/tests/BotSharp.Plugin.PizzaBot/BotSharp.Plugin.PizzaBot.csproj +++ b/tests/BotSharp.Plugin.PizzaBot/BotSharp.Plugin.PizzaBot.csproj @@ -9,11 +9,7 @@ $(SolutionDir)packages - - - - - + diff --git a/tests/BotSharp.Plugin.PizzaBot/Hooks/PizzaBotAgentHook.cs b/tests/BotSharp.Plugin.PizzaBot/Hooks/PizzaBotAgentHook.cs index f0378530e..4557a86ba 100644 --- a/tests/BotSharp.Plugin.PizzaBot/Hooks/PizzaBotAgentHook.cs +++ b/tests/BotSharp.Plugin.PizzaBot/Hooks/PizzaBotAgentHook.cs @@ -12,8 +12,4 @@ public PizzaBotAgentHook(IServiceProvider services, AgentSettings settings) { } - public override async Task OnInstructionLoaded(string template, IDictionary dict) - { - return await base.OnInstructionLoaded(template, dict); - } }