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.9 kB

2 years ago
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. <NoWarn>SKEXP0001,SKEXP0052</NoWarn>
  32. </PropertyGroup>
  33. <ItemGroup>
  34. <PackageReference Include="Microsoft.SemanticKernel.Abstractions" Version="1.1.0" />
  35. </ItemGroup>
  36. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
  37. <PackageReference Include="System.Memory" Version="4.5.5" PrivateAssets="all" />
  38. </ItemGroup>
  39. <ItemGroup>
  40. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  41. </ItemGroup>
  42. </Project>