2025-03-06 18:01:43 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2023-05-26 01:36:15 +00:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-02-08 23:22:43 +00:00
|
|
|
|
<TargetFramework>$(TargetFramework)</TargetFramework>
|
2023-05-26 01:36:15 +00:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2024-01-22 16:51:40 +00:00
|
|
|
|
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
|
2023-05-26 01:36:15 +00:00
|
|
|
|
<UserSecretsId>4fb8c9df-7975-4926-ba73-46c8ca440691</UserSecretsId>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2023-09-18 10:13:56 +00:00
|
|
|
|
<ItemGroup Condition="$(SolutionName)==PizzaBot">
|
2025-03-27 09:13:51 +00:00
|
|
|
|
<PackageReference Include="BotSharp.Core.Rules" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Core.Crontab" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Core.SideCar" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Core.Realtime" />
|
2025-03-01 19:57:38 +00:00
|
|
|
|
<PackageReference Include="BotSharp.Logger" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.OpenAPI" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.Dashboard" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.GoogleAI" />
|
2025-03-27 09:13:51 +00:00
|
|
|
|
<PackageReference Include="BotSharp.Plugin.MongoStorage" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.OpenAI" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.AzureOpenAI" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.SparkDesk" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.DeepSeekAI" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.ChatbotUI" />
|
2025-03-01 19:57:38 +00:00
|
|
|
|
<PackageReference Include="BotSharp.Plugin.HuggingFace" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.KnowledgeBase" />
|
2025-03-27 09:13:51 +00:00
|
|
|
|
<PackageReference Include="BotSharp.Plugin.Graph" />
|
2025-03-01 19:57:38 +00:00
|
|
|
|
<PackageReference Include="BotSharp.Plugin.MetaAI" />
|
2025-03-27 09:13:51 +00:00
|
|
|
|
<PackageReference Include="BotSharp.Plugin.MetaMessenger" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.Qdrant" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.RoutingSpeeder" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.WeChat" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.SemanticKernel" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.Twilio" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.TelegramBots" />
|
2025-03-01 19:57:38 +00:00
|
|
|
|
<PackageReference Include="BotSharp.Plugin.ChatHub" />
|
2025-03-27 09:13:51 +00:00
|
|
|
|
<PackageReference Include="BotSharp.Plugin.LLamaSharp" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.SqlDriver" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.WebDriver" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.AnthropicAI" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.HttpHandler" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.FileHandler" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.EmailHandler" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.AudioHandler" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.MetaGLM" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.Planner" />
|
|
|
|
|
|
<PackageReference Include="BotSharp.Plugin.TencentCos" />
|
2024-01-08 18:06:13 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-05-26 01:36:15 +00:00
|
|
|
|
<ItemGroup>
|
2025-03-01 19:57:38 +00:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SignalR.StackExchangeRedis" />
|
|
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" />
|
2024-01-08 18:06:13 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\tests\BotSharp.Plugin.PizzaBot\BotSharp.Plugin.PizzaBot.csproj" />
|
2024-06-28 05:51:35 +00:00
|
|
|
|
<ProjectReference Include="..\BotSharp.ServiceDefaults\BotSharp.ServiceDefaults.csproj" />
|
2023-05-26 01:36:15 +00:00
|
|
|
|
</ItemGroup>
|
2023-09-18 10:13:56 +00:00
|
|
|
|
|
2024-02-19 14:45:17 +00:00
|
|
|
|
<ItemGroup Condition="$(SolutionName)==BotSharp">
|
2023-05-27 01:58:31 +00:00
|
|
|
|
<ProjectReference Include="..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
|
2025-01-18 16:41:07 +00:00
|
|
|
|
<ProjectReference Include="..\Infrastructure\BotSharp.Core.Rules\BotSharp.Core.Rules.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Infrastructure\BotSharp.Core.Crontab\BotSharp.Core.Crontab.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Infrastructure\BotSharp.Core.SideCar\BotSharp.Core.SideCar.csproj" />
|
2025-03-06 18:01:43 +00:00
|
|
|
|
<ProjectReference Include="..\Infrastructure\BotSharp.Core.Realtime\BotSharp.Core.Realtime.csproj" />
|
2024-01-22 16:51:40 +00:00
|
|
|
|
<ProjectReference Include="..\Infrastructure\BotSharp.Logger\BotSharp.Logger.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Infrastructure\BotSharp.OpenAPI\BotSharp.OpenAPI.csproj" />
|
2024-10-05 02:42:59 +00:00
|
|
|
|
<ProjectReference Include="..\BotSharp.ServiceDefaults\BotSharp.ServiceDefaults.csproj" />
|
2024-05-03 18:17:14 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.Dashboard\BotSharp.Plugin.Dashboard.csproj" />
|
2023-10-08 20:46:42 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.GoogleAI\BotSharp.Plugin.GoogleAI.csproj" />
|
2023-09-18 18:41:49 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MongoStorage\BotSharp.Plugin.MongoStorage.csproj" />
|
2024-07-10 02:23:33 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.OpenAI\BotSharp.Plugin.OpenAI.csproj" />
|
2023-06-08 03:43:16 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.AzureOpenAI\BotSharp.Plugin.AzureOpenAI.csproj" />
|
2024-05-03 18:17:14 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.SparkDesk\BotSharp.Plugin.SparkDesk.csproj" />
|
2025-01-28 00:23:33 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.DeepSeekAI\BotSharp.Plugin.DeepSeekAI.csproj" />
|
2023-06-08 03:43:16 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.ChatbotUI\BotSharp.Plugin.ChatbotUI.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.HuggingFace\BotSharp.Plugin.HuggingFace.csproj" />
|
2023-09-06 12:58:02 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.KnowledgeBase\BotSharp.Plugin.KnowledgeBase.csproj" />
|
2024-08-15 23:21:51 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.Graph\BotSharp.Plugin.Graph.csproj" />
|
2023-06-17 13:32:39 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MetaAI\BotSharp.Plugin.MetaAI.csproj" />
|
2023-09-18 18:41:49 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MetaMessenger\BotSharp.Plugin.MetaMessenger.csproj" />
|
2023-06-18 13:02:59 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.Qdrant\BotSharp.Plugin.Qdrant.csproj" />
|
2023-08-31 02:09:38 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.RoutingSpeeder\BotSharp.Plugin.RoutingSpeeder.csproj" />
|
2023-06-26 23:12:38 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.WeChat\BotSharp.Plugin.WeChat.csproj" />
|
2023-11-13 17:19:25 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.SemanticKernel\BotSharp.Plugin.SemanticKernel.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.Twilio\BotSharp.Plugin.Twilio.csproj" />
|
2024-01-03 04:43:37 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.TelegramBots\BotSharp.Plugin.TelegramBots.csproj" />
|
2024-01-22 16:51:40 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.ChatHub\BotSharp.Plugin.ChatHub.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.LLamaSharp\BotSharp.Plugin.LLamaSharp.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.SqlDriver\BotSharp.Plugin.SqlDriver.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.WebDriver\BotSharp.Plugin.WebDriver.csproj" />
|
2024-05-08 16:52:39 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.AnthropicAI\BotSharp.Plugin.AnthropicAI.csproj" />
|
2024-07-16 22:23:47 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.HttpHandler\BotSharp.Plugin.HttpHandler.csproj" />
|
2024-07-16 22:35:51 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.FileHandler\BotSharp.Plugin.FileHandler.csproj" />
|
2024-07-16 22:23:47 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.EmailHandler\BotSharp.Plugin.EmailHandler.csproj" />
|
2024-10-05 02:42:59 +00:00
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.AudioHandler\BotSharp.Plugin.AudioHandler.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MetaGLM\BotSharp.Plugin.MetaGLM.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.Planner\BotSharp.Plugin.Planner.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\Plugins\BotSharp.Plugin.TencentCos\BotSharp.Plugin.TencentCos.csproj" />
|
2023-05-26 01:36:15 +00:00
|
|
|
|
</ItemGroup>
|
2023-09-18 10:13:56 +00:00
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2024-06-28 05:51:35 +00:00
|
|
|
|
<Folder Include="logs\" />
|
2024-01-08 18:06:13 +00:00
|
|
|
|
<Folder Include="Properties\PublishProfiles\" />
|
2023-09-18 10:13:56 +00:00
|
|
|
|
</ItemGroup>
|
2023-12-28 15:20:18 +00:00
|
|
|
|
|
2024-02-19 14:45:17 +00:00
|
|
|
|
</Project>
|