BotSharp/src/WebStarter/WebStarter.csproj

37 lines
1.4 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-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-03 14:29:50 +00:00
<ProjectReference Include="..\Plugins\Platforms\BotSharp.Platform.AureAi\BotSharp.Platform.AzureAi.csproj" />
<ProjectReference Include="..\Plugins\Platforms\BotSharp.Platform.Community\BotSharp.Platform.Community.csproj" />
<ProjectReference Include="..\Plugins\UiAdapters\BotSharp.UiAdapter.ChatbotUI\BotSharp.UIAdapter.ChatbotUI.csproj" />
<ProjectReference Include="..\Plugins\UiAdapters\BotSharp.UiAdapter.HuggingChatUI\BotSharp.UIAdapter.HuggingChatUI.csproj" />
2023-05-26 01:36:15 +00:00
</ItemGroup>
</Project>