You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

LLamaSharp.SemanticKernel.csproj 654 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard2.0;net6.0;net7.0</TargetFrameworks>
  4. <RootNamespace>LLamaSharp.SemanticKernel</RootNamespace>
  5. <Nullable>enable</Nullable>
  6. <LangVersion>10</LangVersion>
  7. <Platforms>AnyCPU;x64;Arm64</Platforms>
  8. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  9. <ImplicitUsings>enable</ImplicitUsings>
  10. <Nullable>enable</Nullable>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="0.21.230828.2-preview" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  17. </ItemGroup>
  18. </Project>