BotSharp/src/Plugins/Platforms/BotSharp.Platform.Native/BotSharp.Platform.Native.csproj

18 lines
506 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>
2023-05-27 01:58:31 +00:00
<LangVersion>10</LangVersion>
2023-05-26 01:36:15 +00:00
</PropertyGroup>
<ItemGroup>
2023-05-27 01:58:31 +00:00
<PackageReference Include="LLamaSharp" Version="0.3.0" />
<PackageReference Include="LLamaSharp.Backend.Cpu" Version="0.3.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>
2023-05-27 01:58:31 +00:00
</Project>