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.Examples.csproj 3.1 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\LLama\LLamaSharp.Runtime.targets" />
  3. <PropertyGroup>
  4. <OutputType>Exe</OutputType>
  5. <TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. <Platforms>AnyCPU;x64</Platforms>
  9. <!-- Set IncludeBuiltInRuntimes to false to include your own runtime libraries and not link the defaults -->
  10. <IncludeBuiltInRuntimes>true</IncludeBuiltInRuntimes>
  11. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  14. <NoWarn>1701;1702;8604</NoWarn>
  15. </PropertyGroup>
  16. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  17. <NoWarn>1701;1702;8604</NoWarn>
  18. </PropertyGroup>
  19. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  20. <NoWarn>1701;1702;8604</NoWarn>
  21. </PropertyGroup>
  22. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  23. <NoWarn>1701;1702;8604</NoWarn>
  24. </PropertyGroup>
  25. <ItemGroup>
  26. <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="8.0.0" />
  27. <PackageReference Include="Microsoft.KernelMemory.Core" Version="0.12.231123.1-preview" />
  28. <PackageReference Include="Microsoft.SemanticKernel" Version="1.0.0-beta8" />
  29. <PackageReference Include="Spectre.Console" Version="0.48.0" />
  30. </ItemGroup>
  31. <ItemGroup>
  32. <ProjectReference Include="..\LLama.KernelMemory\LLamaSharp.KernelMemory.csproj" />
  33. <ProjectReference Include="..\LLama.SemanticKernel\LLamaSharp.SemanticKernel.csproj" />
  34. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <None Update="Assets\chat-with-bob.json">
  38. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  39. </None>
  40. <None Update="Assets\chat-with-bob.txt">
  41. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  42. </None>
  43. <None Update="Assets\chat.txt">
  44. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  45. </None>
  46. <None Update="Assets\alpaca.txt">
  47. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  48. </None>
  49. <None Update="Assets\chat-with-vicuna-v0.txt">
  50. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  51. </None>
  52. <None Update="Assets\chat-with-vicuna-v1.txt">
  53. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  54. </None>
  55. <None Update="Assets\dan.txt">
  56. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  57. </None>
  58. <None Update="Assets\json.gbnf">
  59. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  60. </None>
  61. <None Update="Assets\reason-act.txt">
  62. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  63. </None>
  64. <None Update="Assets\sample-SK-Readme.pdf">
  65. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  66. </None>
  67. <None Update="Assets\chat-with-kunkun-chinese.txt">
  68. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  69. </None>
  70. </ItemGroup>
  71. </Project>