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-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>
|
|
|
|
|
<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-05-26 01:36:15 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|