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 1.8 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. <Version>0.8.0</Version>
  12. <Authors>Tim Miller, xbotter</Authors>
  13. <Company>SciSharp STACK</Company>
  14. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  15. <Copyright>MIT, SciSharp STACK $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
  16. <RepositoryUrl>https://github.com/SciSharp/LLamaSharp</RepositoryUrl>
  17. <RepositoryType>git</RepositoryType>
  18. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  19. <PackageTags>LLama, LLM, GPT, ChatGPT, semantic-kernel, SciSharp</PackageTags>
  20. <Description>
  21. The integration of LLamaSharp and Microsoft semantic-kernel.
  22. </Description>
  23. <PackageReleaseNotes>
  24. Support integration with semantic-kernel
  25. </PackageReleaseNotes>
  26. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  27. <PackageOutputPath>packages</PackageOutputPath>
  28. <Platforms>AnyCPU;x64;Arm64</Platforms>
  29. <PackageId>LLamaSharp.semantic-kernel</PackageId>
  30. <Configurations>Debug;Release;GPU</Configurations>
  31. </PropertyGroup>
  32. <ItemGroup>
  33. <PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.0.0-beta1" />
  34. </ItemGroup>
  35. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
  36. <PackageReference Include="System.Memory" Version="4.5.5" PrivateAssets="all" />
  37. </ItemGroup>
  38. <ItemGroup>
  39. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  40. </ItemGroup>
  41. </Project>