|
- <Project Sdk="Microsoft.NET.Sdk">
-
- <PropertyGroup>
- <TargetFrameworks>netstandard2.0;net6.0;net7.0</TargetFrameworks>
- <RootNamespace>LLama</RootNamespace>
- <Nullable>enable</Nullable>
- <LangVersion>10</LangVersion>
- <Platforms>AnyCPU;x64</Platforms>
- <AllowUnsafeBlocks>True</AllowUnsafeBlocks>
-
- <Version>0.2.2</Version>
- <Authors>Yaohui Liu, 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, providing APIs to run the model and deploy it on Web.
- </Description>
- <PackageReleaseNotes>
- LLama 0.1.0 provides basic APIs to load and run models.
- </PackageReleaseNotes>
- <PackageLicenseExpression>MIT</PackageLicenseExpression>
- <PackageOutputPath>packages</PackageOutputPath>
- <Platforms>AnyCPU;x64</Platforms>
- <PackageId>LLamaSharp</PackageId>
- <Configurations>Debug;Release;GPU</Configurations>
- </PropertyGroup>
-
- <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
- <PackageReference Include="IsExternalInit" Version="1.0.3" PrivateAssets="all" />
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="Microsoft.Extensions.Logging" Version="7.0.0" />
- <PackageReference Include="Serilog" Version="3.0.0-dev-01998" />
- <PackageReference Include="Serilog.Extensions.Logging.File" Version="3.0.1-dev-00077" />
- <PackageReference Include="Serilog.Sinks.Console" Version="4.1.0" />
- </ItemGroup>
-
- <ItemGroup>
- <None Include="runtimes/libllama.dll">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <Link>libllama.dll</Link>
- </None>
- <None Include="runtimes/libllama-cuda11.dll">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <Link>libllama-cuda11.dll</Link>
- </None>
- <None Include="runtimes/libllama-cuda12.dll">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <Link>libllama-cuda12.dll</Link>
- </None>
- <None Include="runtimes/libllama.so">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <Link>libllama.so</Link>
- </None>
- <None Include="runtimes/libllama-cuda11.so">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <Link>libllama-cuda11.so</Link>
- </None>
- <None Include="runtimes/libllama-cuda12.so">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- <Link>libllama-cuda12.so</Link>
- </None>
- </ItemGroup>
-
- </Project>
|