BotSharp/src/Plugins/UIs/BotSharp.Plugin.ChatbotUI/BotSharp.Plugin.ChatbotUI.csproj

20 lines
595 B
XML
Raw Normal View History

2023-05-26 01:36:15 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>10</LangVersion>
</PropertyGroup>
<ItemGroup>
2023-05-27 01:58:31 +00:00
<PackageReference Include="Azure.AI.OpenAI" Version="1.0.0-beta.5" />
2023-05-26 01:36:15 +00:00
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.0" />
2023-05-27 01:58:31 +00:00
<PackageReference Include="System.Text.Json" Version="7.0.0" />
2023-05-26 01:36:15 +00:00
</ItemGroup>
<ItemGroup>
2023-06-03 14:29:50 +00:00
<ProjectReference Include="..\..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
2023-05-26 01:36:15 +00:00
</ItemGroup>
</Project>