BotSharp/src/Plugins/BotSharp.Plugin.HuggingFace/BotSharp.Plugin.HuggingFace.csproj

19 lines
518 B
XML
Raw Normal View History

2023-06-03 02:07:30 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.1</TargetFramework>
<Nullable>enable</Nullable>
<LangVersion>10</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Core" Version="2.2.0" />
2023-06-08 03:43:16 +00:00
<PackageReference Include="System.Text.Json" Version="7.0.2" />
2023-06-03 02:07:30 +00:00
</ItemGroup>
<ItemGroup>
2023-06-08 03:43:16 +00:00
<ProjectReference Include="..\..\Infrastructure\BotSharp.Abstraction\BotSharp.Abstraction.csproj" />
2023-06-03 02:07:30 +00:00
</ItemGroup>
</Project>