|
123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
-
- <PropertyGroup>
- <TargetFramework>net7.0</TargetFramework>
- <Nullable>disable</Nullable>
- <ImplicitUsings>enable</ImplicitUsings>
- </PropertyGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\LLama\LLamaSharp.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <Folder Include="wwwroot\image\" />
- </ItemGroup>
-
- <ItemGroup>
- <PackageReference Include="System.Linq.Async" Version="6.0.1" />
- </ItemGroup>
-
- </Project>
|