Coordinated cross-cutting bump: 9 csproj TFMs net8.0 -> net10.0;
global.json sdk.version 8.0.0 -> 10.0.0; all Dockerfiles + scripts/
+ .woodpecker on mcr.microsoft.com/dotnet/{sdk,aspnet,runtime}:10.0;
all Microsoft.AspNetCore.* (8.0.25) and Microsoft.Extensions.* (9.0.10)
packages -> 10.0.7. Serilog.AspNetCore retained at 8.0.3 (10.0.0
requires Serilog.Sinks.File >= 7.0.0; out of AZ-500 scope per "no
unrelated package bumps") -- documented in AGENTS.md. Swashbuckle
9.x bumped to 10.1.7 to track Microsoft.OpenApi 2.x; Program.cs +
ParameterDescriptionFilter.cs refactored for the 2.x namespace
(Microsoft.OpenApi), OpenApiSecuritySchemeReference, JsonSchemaType
enum, and IOpenApiSchema dictionary properties. Fixed implicit AC-5
prereq: scripts/run-performance-tests.sh PERF_DLL path bin/Release/
net8.0 -> net10.0. Docs sync: architecture.md + AGENTS.md.
ACs verified: AC-1..AC-4 + AC-7 + AC-8 by grep + build; AC-6 by
./scripts/run-tests.sh --full (271/271 unit tests + full integration
suite green); AC-5 short bootstrap-smoke (PERF_REPEAT_COUNT=2
PERF_UAV_BATCH_SIZE=2) succeeded at the bootstrap step (no exit 3),
PT-01..PT-07 PASS. PT-08 surfaced a pre-existing grep-pipefail bug
in run-performance-tests.sh:417 -- not an SDK problem; recorded as
follow-up in the perf-cycle3 leftover. Code review verdict:
PASS_WITH_WARNINGS (2 Medium deferred per scope discipline:
WithOpenApi ASPDEPR002 deprecation x8, CS8604 nullable in
ParameterDescriptionFilter.cs; both targeted at follow-up PBIs).
Co-authored-by: Cursor <cursoragent@cursor.com>
6.4 KiB
Batch Report
Batch: 1 (cycle 4) Tasks: AZ-500_dotnet10_migration Date: 2026-05-12
Task Results
| Task | Status | Files Modified | Tests | AC Coverage | Issues |
|---|---|---|---|---|---|
| AZ-500_dotnet10_migration | Done | 18 source/config + 2 doc + 1 leftover | 271/271 unit + full integration suite PASS | 8/8 ACs covered | 2 Medium (deferred, scope-protected) + 1 Low scope-doc |
Files Modified (21 total)
Build / project files (12):
global.jsonSatelliteProvider.Api/SatelliteProvider.Api.csprojSatelliteProvider.Common/SatelliteProvider.Common.csprojSatelliteProvider.DataAccess/SatelliteProvider.DataAccess.csprojSatelliteProvider.IntegrationTests/SatelliteProvider.IntegrationTests.csprojSatelliteProvider.Services.RegionProcessing/SatelliteProvider.Services.RegionProcessing.csprojSatelliteProvider.Services.RouteManagement/SatelliteProvider.Services.RouteManagement.csprojSatelliteProvider.Services.TileDownloader/SatelliteProvider.Services.TileDownloader.csprojSatelliteProvider.TestSupport/SatelliteProvider.TestSupport.csprojSatelliteProvider.Tests/SatelliteProvider.Tests.csprojSatelliteProvider.Api/DockerfileSatelliteProvider.IntegrationTests/Dockerfile
Source code (2):
SatelliteProvider.Api/Program.cs— Microsoft.OpenApi 2.x refactor (namespace +OpenApiSecuritySchemeReference+JsonSchemaType+IOpenApiSchemaproperties)SatelliteProvider.Api/Swagger/ParameterDescriptionFilter.cs— namespace update
Scripts / CI (3):
scripts/run-tests.sh— 3×mcr.microsoft.com/dotnet/sdk:8.0→:10.0scripts/run-performance-tests.sh—bin/Release/net8.0/→bin/Release/net10.0/(necessary for AC-5).woodpecker/01-test.yml—mcr.microsoft.com/dotnet/sdk:8.0→:10.0
Documentation (2):
_docs/02_document/architecture.md— Tech Stack table + Architecture Vision prose updated to .NET 10AGENTS.md— Tech Stack section + Key packages list updated; Serilog.AspNetCore 8.0.3 fallback documented
Process (2):
_docs/_autodev_state.md— phase tracking_docs/_process_leftovers/2026-05-12_perf-cycle3-harness-execution.md— replay #2 result added (bootstrap clean; PT-08 grep-pipefail bug surfaced as new follow-up)
Per-Task Notes
AZ-500: .NET 8 → .NET 10 migration
Implementation order (single batch, sequential):
- Inventory current state: 9 csproj files on
net8.0;global.json sdk.version=8.0.0; 4 Docker base image refs; 19Microsoft.AspNetCore.*/Microsoft.Extensions.*package refs. - Bump
global.jsonSDK pin to10.0.0/latestMinor. - Bump every
<TargetFramework>fromnet8.0tonet10.0. - Bump all
Microsoft.AspNetCore.*(8.0.25) andMicrosoft.Extensions.*(9.0.10) packages to10.0.7(highest 10.0 patch on NuGet at run time). - Initial attempt with
Serilog.AspNetCore 10.0.0faileddotnet restorewith NU1605 (transitive depSerilog.Sinks.File >= 7.0.0conflicts with the project's pinned6.0.0). Per Risk #4 mitigation + "no unrelated package bumps" constraint, reverted Serilog.AspNetCore to8.0.3and documented in AGENTS.md. - Bump Docker base images in 2 Dockerfiles (
aspnet:10.0,sdk:10.0,runtime:10.0). - Bump CI/script images:
scripts/run-tests.sh(3 refs) +.woodpecker/01-test.yml(1 ref). - Initial
Microsoft.AspNetCore.OpenApi 10.0.7upgrade pulledMicrosoft.OpenApi 2.xwhich removed theMicrosoft.OpenApi.Modelsnamespace. Compilation failed (CS0234, CS0246, CS7069) inProgram.csandParameterDescriptionFilter.cs. User chose: bump Swashbuckle to 10.1.7 (which targetsMicrosoft.OpenApi 2.4.1) + refactor source to the 2.x API surface (OpenApiSecuritySchemeReference,JsonSchemaType,IOpenApiSchemadictionary properties,using Microsoft.OpenApi;). - After build clean, found one remaining compile error:
OpenApiSecurityRequirementcollection initializer expectedList<string>and Swashbuckle'sAddSecurityRequirementexpectedFunc<OpenApiDocument, OpenApiSecurityRequirement>. Fixed by wrapping in lambda +new List<string>(). ./scripts/run-tests.sh --full→ exit 0 (271/271 unit + full integration suite green).docker compose up -d --build→ API healthy on:18980(anonymous request → 401, swagger → 200).- Found
scripts/run-performance-tests.sh:49had a hardcodedbin/Release/net8.0/path that would fail post-migration; bumped tonet10.0/. - AC-5 perf-bootstrap smoke (
PERF_REPEAT_COUNT=2 PERF_UAV_BATCH_SIZE=2): build succeeded (no exit 3 — bootstrap clean), JWT mint OK, PT-01..PT-07 PASS. PT-08 crashed atrejected=$(grep -o ... | wc -l | tr -d ' ')becausegrep -oexits 1 on zero matches andset -o pipefailpropagates. Pre-existing script bug, surfaced now because cycle 3 never reached PT-08. Documented in the perf-leftover file as a new follow-up; AC-5's bootstrap-only gate is satisfied. - AC-8 docs verified via
grepoverarchitecture.mdandAGENTS.md— both reflect.NET 10/ASP.NET Core 10.
Unresolved questions: none.
Blockers: none.
AC Test Coverage
All 8 ACs covered (full trace in reviews/batch_01_cycle4_review.md → "AC Verification Trace"). Verification mix matches the task spec's Blackbox Tests table: AC-1/2/3/4/8 by grep, AC-6 by ./scripts/run-tests.sh --full, AC-7 by docker compose build, AC-5 by manual smoke run.
Code Review Verdict
PASS_WITH_WARNINGS — see _docs/03_implementation/reviews/batch_01_cycle4_review.md.
Findings (all deferred per "scope discipline"; see review report Findings section + Recommended Follow-Up PBIs):
- F1 Medium —
WithOpenApi(...)deprecation (ASPDEPR002) at 8 callsites inProgram.cs. Migration intentionally preserved API surface per Risk #2. - F2 Medium — CS8604 nullable warning in
ParameterDescriptionFilter.cs:25from Microsoft.OpenApi 2.x stricter annotations. - F3 Low —
scripts/run-performance-tests.sh:49path fix was implicit in AC-5 but not inScope/Included. Necessary, accepted.
Auto-Fix Attempts
0 (no FAIL findings; PASS_WITH_WARNINGS proceeds without auto-fix).
Stuck Agents
None.
Next Batch
All AZ-500 work complete. Next: implement-skill Step 13 (archive task to _docs/02_tasks/done/) → Step 15 (Product Implementation Completeness Gate) → Step 16 (full test run is already green; record handoff to test-run skill in autodev Step 11) → autodev Step 11 (Run Tests) → Step 12 (Test-Spec Sync) → ...