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.csproj 2.4 kB

2 years ago
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
  4. <RootNamespace>LLama</RootNamespace>
  5. <Nullable>enable</Nullable>
  6. <LangVersion>10</LangVersion>
  7. <Platforms>AnyCPU;x64;Arm64</Platforms>
  8. <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
  9. <Version>0.8.0</Version>
  10. <Authors>Yaohui Liu, Martin Evans, Haiping Chen</Authors>
  11. <Company>SciSharp STACK</Company>
  12. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  13. <Copyright>MIT, SciSharp STACK $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
  14. <RepositoryUrl>https://github.com/SciSharp/LLamaSharp</RepositoryUrl>
  15. <RepositoryType>git</RepositoryType>
  16. <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&amp;v=4</PackageIconUrl>
  17. <PackageTags>LLama, LLM, GPT, ChatGPT, NLP, AI, Chat Bot, SciSharp</PackageTags>
  18. <Description>
  19. The .NET binding of LLama.cpp, making LLM inference and deployment easy and fast. For model
  20. weights to run, please go to https://github.com/SciSharp/LLamaSharp for more information.
  21. </Description>
  22. <PackageReleaseNotes>
  23. LLamaSharp 0.8.0 supports automatically device feature detection, adds integration with kernel-memory and fixes some performance issues.
  24. </PackageReleaseNotes>
  25. <PackageLicenseExpression>MIT</PackageLicenseExpression>
  26. <PackageOutputPath>packages</PackageOutputPath>
  27. <Platforms>AnyCPU;x64;Arm64</Platforms>
  28. <PackageId>LLamaSharp</PackageId>
  29. <Configurations>Debug;Release;GPU</Configurations>
  30. </PropertyGroup>
  31. <PropertyGroup>
  32. <PackageReadmeFile>README.md</PackageReadmeFile>
  33. <GenerateDocumentationFile>True</GenerateDocumentationFile>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <None Include="..\README.md" Pack="true" PackagePath="\" />
  37. </ItemGroup>
  38. <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
  39. <PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all" />
  40. <PackageReference Include="System.Memory" Version="4.5.5" PrivateAssets="all" />
  41. <PackageReference Include="System.Linq.Async" Version="6.0.1" />
  42. <PackageReference Include="System.Text.Json" Version="8.0.0" />
  43. </ItemGroup>
  44. <ItemGroup>
  45. <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
  46. </ItemGroup>
  47. </Project>