|
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
- <RootNamespace>LLama</RootNamespace>
- <Nullable>enable</Nullable>
- <LangVersion>10</LangVersion>
- <Platforms>AnyCPU;x64;Arm64</Platforms>
- <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
-
- <Version>0.8.0</Version>
- <Authors>Yaohui Liu, Martin Evans, Haiping Chen</Authors>
- <Company>SciSharp STACK</Company>
- <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
- <Copyright>MIT, SciSharp STACK $([System.DateTime]::UtcNow.ToString(yyyy))</Copyright>
- <RepositoryUrl>https://github.com/SciSharp/LLamaSharp</RepositoryUrl>
- <RepositoryType>git</RepositoryType>
- <PackageIconUrl>https://avatars3.githubusercontent.com/u/44989469?s=200&v=4</PackageIconUrl>
- <PackageTags>LLama, LLM, GPT, ChatGPT, NLP, AI, Chat Bot, SciSharp</PackageTags>
- <Description>
- The .NET binding of LLama.cpp, making LLM inference and deployment easy and fast. For model
- weights to run, please go to https://github.com/SciSharp/LLamaSharp for more information.
- </Description>
- <PackageReleaseNotes>
- LLamaSharp 0.8.0 supports automatically device feature detection, adds integration with kernel-memory and fixes some performance issues.
- </PackageReleaseNotes>
- <PackageLicenseExpression>MIT</PackageLicenseExpression>
- <PackageOutputPath>packages</PackageOutputPath>
- <Platforms>AnyCPU;x64;Arm64</Platforms>
- <PackageId>LLamaSharp</PackageId>
- <Configurations>Debug;Release;GPU</Configurations>
- </PropertyGroup>
-
- <PropertyGroup>
- <PackageReadmeFile>README.md</PackageReadmeFile>
- <GenerateDocumentationFile>True</GenerateDocumentationFile>
- </PropertyGroup>
-
- <ItemGroup>
- <None Include="..\README.md" Pack="true" PackagePath="\" />
- </ItemGroup>
-
- <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
- <PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all" />
- <PackageReference Include="System.Memory" Version="4.5.5" PrivateAssets="all" />
- <PackageReference Include="System.Linq.Async" Version="6.0.1" />
- <PackageReference Include="System.Text.Json" Version="8.0.0" />
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.0" />
- </ItemGroup>
-
- </Project>
|