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 2.6 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <Import Project="..\LLama\LLamaSharp.Runtime.targets" />
  3. <PropertyGroup>
  4. <OutputType>Exe</OutputType>
  5. <TargetFramework>net6.0</TargetFramework>
  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. </PropertyGroup>
  12. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  13. <NoWarn>1701;1702;8604</NoWarn>
  14. </PropertyGroup>
  15. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  16. <NoWarn>1701;1702;8604</NoWarn>
  17. </PropertyGroup>
  18. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
  19. <NoWarn>1701;1702;8604</NoWarn>
  20. </PropertyGroup>
  21. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
  22. <NoWarn>1701;1702;8604</NoWarn>
  23. </PropertyGroup>
  24. <ItemGroup>
  25. <PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
  26. <PackageReference Include="Microsoft.SemanticKernel" Version="1.0.0-beta1" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <ProjectReference Include="..\LLama.KernelMemory\LLamaSharp.KernelMemory.csproj" />
  30. <ProjectReference Include="..\LLama.SemanticKernel\LLamaSharp.SemanticKernel.csproj" />
  31. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <None Update="Assets\chat-with-bob.txt">
  35. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  36. </None>
  37. <None Update="Assets\chat.txt">
  38. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  39. </None>
  40. <None Update="Assets\alpaca.txt">
  41. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  42. </None>
  43. <None Update="Assets\chat-with-vicuna-v0.txt">
  44. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  45. </None>
  46. <None Update="Assets\chat-with-vicuna-v1.txt">
  47. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  48. </None>
  49. <None Update="Assets\dan.txt">
  50. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  51. </None>
  52. <None Update="Assets\json.gbnf">
  53. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  54. </None>
  55. <None Update="Assets\reason-act.txt">
  56. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  57. </None>
  58. <None Update="Assets\sample-SK-Readme.pdf">
  59. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  60. </None>
  61. </ItemGroup>
  62. </Project>