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.WebAPI.csproj 972 B

123456789101112131415161718192021222324252627
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <Import Project="..\LLama\LLamaSharp.Runtime.targets" />
  3. <PropertyGroup>
  4. <TargetFramework>net8.0</TargetFramework>
  5. <Nullable>enable</Nullable>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <InvariantGlobalization>true</InvariantGlobalization>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Microsoft.VisualStudio.Validation" Version="17.8.8" />
  11. <PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.3" />
  12. <PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <Content Update="Properties\launchSettings.json">
  19. <ExcludeFromSingleFile>true</ExcludeFromSingleFile>
  20. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  21. <CopyToPublishDirectory>Never</CopyToPublishDirectory>
  22. </Content>
  23. </ItemGroup>
  24. </Project>