Some checks failed
deploy-site / deploy (push) Failing after 13m48s
The Ollama setup guide still led with two retired models while the app already defaults to the newer one, so a fresh setup would install a model the app does not use. The guide now recommends the same model as the rest of the app and lists current lightweight alternatives.
27 lines
1.1 KiB
XML
27 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Version>1.3.5</Version>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<!-- Retained legacy binaries are not static assets and must never publish. -->
|
|
<Content Remove="wwwroot\releases\**\*" />
|
|
<Content Remove="wwwroot\index.html" />
|
|
<Content Remove="wwwroot\assets\index-D7M5UQvT.js" />
|
|
<Content Remove="wwwroot\assets\index-JlYFxlAJ.js" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.10" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.10" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.10" />
|
|
<PackageReference Include="SQLitePCLRaw.lib.e_sqlite3" Version="2.1.13" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.2.3" />
|
|
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="8.22.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|