BotSharp/src/WebStarter/WebStarter.csproj

48 lines
1.9 KiB
XML
Raw Normal View History

2023-05-26 01:36:15 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<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-19 12:43:36 +00:00
<Compile Remove="knowledge_chunks\**" />
<Content Remove="knowledge_chunks\**" />
<EmbeddedResource Remove="knowledge_chunks\**" />
<None Remove="knowledge_chunks\**" />
</ItemGroup>
<ItemGroup>
<None Remove="crawl-300d-2M-subword.bin" />
2023-05-29 01:06:05 +00:00
<None Remove="Prompts\chat-samples.txt" />
2023-05-27 01:58:31 +00:00
<None Remove="Prompts\chat-with-bob.txt" />
</ItemGroup>
<ItemGroup>
2023-05-29 01:06:05 +00:00
<Content Include="Prompts\chat-samples.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2023-05-27 01:58:31 +00:00
<Content Include="Prompts\chat-with-bob.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2023-05-26 01:36:15 +00:00
<ItemGroup>
2023-06-11 23:46:02 +00:00
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="6.0.16" />
2023-05-26 01:36:15 +00:00
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
</ItemGroup>
<ItemGroup>
2023-05-27 01:58:31 +00:00
<ProjectReference Include="..\Infrastructure\BotSharp.Core\BotSharp.Core.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" />
2023-06-17 13:32:39 +00:00
<ProjectReference Include="..\Plugins\BotSharp.Plugin.MetaAI\BotSharp.Plugin.MetaAI.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-05-26 01:36:15 +00:00
</ItemGroup>
</Project>