|
123456789101112131415161718192021222324252627282930 |
- <Project Sdk="Microsoft.NET.Sdk">
- <Import Project="..\LLama\LLamaSharp.Runtime.targets" />
-
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
- <Configuration>Release</Configuration>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="BenchmarkDotNet" Version="0.13.12" />
- <PackageReference Include="BenchmarkDotNet.Diagnostics.Windows" Version="0.13.12" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <None Update="Assets\TextCompletionPrompts.txt">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- <None Update="Models\extreme-ironing-taxi-610x427.jpg">
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
-
- </Project>
|