BotSharp/src/WebStarter/WebStarter.csproj

67 lines
4.6 KiB
XML
Raw Normal View History

2024-05-13 13:57:39 +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>
<ItemGroup Condition="$(SolutionName)==PizzaBot">
2023-11-29 23:23:14 +00:00
<PackageReference Include="BotSharp.Logger" Version="$(BotSharpVersion)" />
2023-09-30 22:02:49 +00:00
<PackageReference Include="BotSharp.OpenAPI" Version="$(BotSharpVersion)" />
<PackageReference Include="BotSharp.Plugin.AzureOpenAI" Version="$(BotSharpVersion)" />
2023-10-13 20:08:59 +00:00
<PackageReference Include="BotSharp.Plugin.GoogleAI" Version="$(BotSharpVersion)" />
<PackageReference Include="BotSharp.Plugin.HuggingFace" Version="$(BotSharpVersion)" />
2023-09-30 22:02:49 +00:00
<PackageReference Include="BotSharp.Plugin.KnowledgeBase" Version="$(BotSharpVersion)" />
<PackageReference Include="BotSharp.Plugin.MetaAI" Version="$(BotSharpVersion)" />
2024-01-22 16:51:40 +00:00
<PackageReference Include="BotSharp.Plugin.LLamaSharp" Version="$(BotSharpVersion)" />
<PackageReference Include="BotSharp.Plugin.ChatHub" Version="$(BotSharpVersion)" />
2024-01-08 18:06:13 +00:00
</ItemGroup>
2023-05-26 01:36:15 +00:00
<ItemGroup>
2024-01-09 00:40:52 +00:00
<PackageReference Include="Serilog.Extensions.Hosting" Version="8.0.0" />
2024-05-13 13:57:39 +00:00
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.20.1" />
2024-01-08 18:06:13 +00:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\tests\BotSharp.Plugin.PizzaBot\BotSharp.Plugin.PizzaBot.csproj" />
2024-01-29 04:18:40 +00:00
<ProjectReference Include="..\Plugins\BotSharp.Plugin.Dashboard\BotSharp.Plugin.Dashboard.csproj" />
2024-03-26 01:52:21 +00:00
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MetaGLM\BotSharp.Plugin.MetaGLM.csproj" />
2024-03-11 14:01:40 +00:00
<ProjectReference Include="..\Plugins\BotSharp.Plugin.SparkDesk\BotSharp.Plugin.SparkDesk.csproj" />
2023-05-26 01:36:15 +00:00
</ItemGroup>
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" />
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-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" />
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" />
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" />
<ProjectReference Include="..\Plugins\BotSharp.Plugin.KnowledgeBase\BotSharp.Plugin.KnowledgeBase.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.HttpHandler\BotSharp.Plugin.HttpHandler.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" />
2023-05-26 01:36:15 +00:00
</ItemGroup>
<ItemGroup>
2024-01-08 18:06:13 +00:00
<Folder Include="Properties\PublishProfiles\" />
</ItemGroup>
2023-12-28 15:20:18 +00:00
2024-02-19 14:45:17 +00:00
</Project>