aee0ac1e6c
PR Checks / test-and-build (pull_request) Successful in 10m23s
Test-only patch release. Sync the four canonical version sources: - Directory.Build.props - compose.yaml (bot, discord, web image tags) - .gitea/workflows/deploy.yml (VERSION env) - src/GmRelay.Web/Components/Layout/NavMenu.razor (visible nav-version) The new NavMenu_ShouldExposeCurrentProjectVersion test reads the version from Directory.Build.props, so this bump does NOT need a hand-edited test literal — verified locally that the test passes on 3.9.4 with no manual changes.
16 lines
498 B
XML
16 lines
498 B
XML
<Project>
|
|
<PropertyGroup>
|
|
<Version>3.9.4</Version>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<LangVersion>preview</LangVersion>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="SecurityCodeScan.VS2019" Version="5.6.7" PrivateAssets="all" />
|
|
</ItemGroup>
|
|
</Project>
|