Version 1.1.0 was published on 2026-09-15, so its tag is closed. Every commit since then, the update-feed rework, dictionary import and export, the extra push transports, and entitlement gating, needs its own immutable version. Product version, Android version code, iOS build number, and all package and store surfaces move to 1.2.0 / 1020001, with Korean and English store notes for the new version code. The download centers read that version and its release date from one place instead of repeating them inline.
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.2.0</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>
|