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.

LLama.Benchmark.csproj 962 B

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\LLama\LLamaSharp.Runtime.targets" />
  3. <PropertyGroup>
  4. <OutputType>Exe</OutputType>
  5. <TargetFramework>net8.0</TargetFramework>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. <Configuration>Release</Configuration>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
  12. <PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.13.12" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Update="Assets\TextCompletionPrompts.txt">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </None>
  21. <None Update="Models\extreme-ironing-taxi-610x427.jpg">
  22. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  23. </None>
  24. </ItemGroup>
  25. </Project>