From 046b58a526b3a8513c3af76630d3bcb8518ffa14 Mon Sep 17 00:00:00 2001 From: T <74899888+tslashd@users.noreply.github.com> Date: Sat, 18 Jul 2026 10:43:18 +0300 Subject: [PATCH 1/2] fix: Add Microsoft.OpenApi package for Swashbuckle.AspNetCore compatibility Add the Microsoft.OpenApi package (v1.6.20) to resolve missing OpenAPI model types. This is required for compatibility with Swashbuckle.AspNetCore when using OpenApi types like OpenApiOperation and OpenApiModels in the code. --- SurfTimer.Api.csproj | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SurfTimer.Api.csproj b/SurfTimer.Api.csproj index 08e4dab..e7642d7 100644 --- a/SurfTimer.Api.csproj +++ b/SurfTimer.Api.csproj @@ -1,4 +1,4 @@ - + net8.0 @@ -13,6 +13,7 @@ + From 7296952c965aac09baf3b65a360cc2a58751b737 Mon Sep 17 00:00:00 2001 From: T <74899888+tslashd@users.noreply.github.com> Date: Sat, 18 Jul 2026 10:45:12 +0300 Subject: [PATCH 2/2] fix: Add Microsoft.OpenApi package for Swashbuckle.AspNetCore compatibility Add the Microsoft.OpenApi package (v1.6.20) to resolve missing OpenAPI model types. This is required for compatibility with Swashbuckle.AspNetCore when using OpenApi types like OpenApiOperation and OpenApiModels in the code.