BotSharp/src/WebStarter/WebStarter.csproj

54 lines
2.7 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
2023-05-26 01:36:15 +00:00
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>4fb8c9df-7975-4926-ba73-46c8ca440691</UserSecretsId>
</PropertyGroup>
2023-05-27 01:58:31 +00:00
<ItemGroup>
2023-06-27 18:31:13 +00:00
<Compile Remove="data\**" />
2023-06-19 12:43:36 +00:00
<Compile Remove="knowledge_chunks\**" />
2023-06-27 18:31:13 +00:00
<Compile Remove="Prompts\**" />
<Content Remove="data\**" />
2023-06-19 12:43:36 +00:00
<Content Remove="knowledge_chunks\**" />
2023-06-27 18:31:13 +00:00
<Content Remove="Prompts\**" />
<EmbeddedResource Remove="data\**" />
2023-06-19 12:43:36 +00:00
<EmbeddedResource Remove="knowledge_chunks\**" />
2023-06-27 18:31:13 +00:00
<EmbeddedResource Remove="Prompts\**" />
<None Remove="data\**" />
2023-06-19 12:43:36 +00:00
<None Remove="knowledge_chunks\**" />
2023-06-27 18:31:13 +00:00
<None Remove="Prompts\**" />
2023-06-19 12:43:36 +00:00
</ItemGroup>
<ItemGroup>
<None Remove="crawl-300d-2M-subword.bin" />
2023-05-27 01:58:31 +00:00
</ItemGroup>
2023-05-26 01:36:15 +00:00
<ItemGroup>
<PackageReference Include="LLamaSharp.Backend.Cuda11" Version="0.5.1" />
2023-06-11 23:46:02 +00:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.16" />
<PackageReference Include="SciSharp.TensorFlow.Redist" Version="2.11.4" />
2023-05-26 01:36:15 +00:00
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>
<ItemGroup>
2023-08-30 22:40:45 +00:00
<ProjectReference Include="..\..\tests\BotSharp.Plugin.PizzaBot\BotSharp.Plugin.PizzaBot.csproj" />
2023-05-27 01:58:31 +00:00
<ProjectReference Include="..\Infrastructure\BotSharp.Core\BotSharp.Core.csproj" />
2023-08-19 00:15:02 +00:00
<ProjectReference Include="..\Infrastructure\BotSharp.OpenAPI\BotSharp.OpenAPI.csproj" />
2023-06-08 03:43:16 +00:00
<ProjectReference Include="..\Plugins\BotSharp.Plugin.AzureOpenAI\BotSharp.Plugin.AzureOpenAI.csproj" />
<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-08-19 13:25:47 +00:00
<ProjectReference Include="..\Plugins\BotSharp.Plugin.LLamaSharp\BotSharp.Plugin.LLamaSharp.csproj" />
2023-06-17 13:32:39 +00:00
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MetaAI\BotSharp.Plugin.MetaAI.csproj" />
2023-09-01 22:33:36 +00:00
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MongoStorage\BotSharp.Plugin.MongoStorage.csproj" />
2023-06-19 18:32:06 +00:00
<ProjectReference Include="..\Plugins\BotSharp.Plugin.PaddleSharp\BotSharp.Plugin.PaddleSharp.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-05-26 01:36:15 +00:00
</ItemGroup>
</Project>