From e6ee13784f25067af082bd29ad7d537c898ef62b Mon Sep 17 00:00:00 2001 From: Leigh Pointer Date: Wed, 12 Nov 2025 12:12:03 +0100 Subject: [PATCH 1/3] update Swashbuckle to 10.0.0 update Swashbuckle to 10.0.0 in csproj and nuspec --- Oqtane.Package/Oqtane.Server.nuspec | 2 +- Oqtane.Server/Oqtane.Server.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Oqtane.Package/Oqtane.Server.nuspec b/Oqtane.Package/Oqtane.Server.nuspec index ffda94ad..789f9215 100644 --- a/Oqtane.Package/Oqtane.Server.nuspec +++ b/Oqtane.Package/Oqtane.Server.nuspec @@ -26,7 +26,7 @@ - + diff --git a/Oqtane.Server/Oqtane.Server.csproj b/Oqtane.Server/Oqtane.Server.csproj index 608fc22b..1236dde0 100644 --- a/Oqtane.Server/Oqtane.Server.csproj +++ b/Oqtane.Server/Oqtane.Server.csproj @@ -33,7 +33,7 @@ - + From 92dc46a81e96f44dd922d5f4f4fa77cd3d75a694 Mon Sep 17 00:00:00 2001 From: sbwalker Date: Wed, 12 Nov 2025 08:41:28 -0500 Subject: [PATCH 2/3] removed System.Net.Http.Json depemdency based on pruning message during compilation --- Oqtane.Application/Client/Oqtane.Application.Client.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/Oqtane.Application/Client/Oqtane.Application.Client.csproj b/Oqtane.Application/Client/Oqtane.Application.Client.csproj index 621b9100..fdbfd650 100644 --- a/Oqtane.Application/Client/Oqtane.Application.Client.csproj +++ b/Oqtane.Application/Client/Oqtane.Application.Client.csproj @@ -16,7 +16,6 @@ - From b786faa6a1fe6b79869388192ac18511642c161b Mon Sep 17 00:00:00 2001 From: sbwalker Date: Wed, 12 Nov 2025 10:59:52 -0500 Subject: [PATCH 3/3] fix compilation error caused by Microsoft.OpenApi --- Oqtane.Server/Extensions/OqtaneServiceCollectionExtensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Oqtane.Server/Extensions/OqtaneServiceCollectionExtensions.cs b/Oqtane.Server/Extensions/OqtaneServiceCollectionExtensions.cs index e72ddc4e..0452686c 100644 --- a/Oqtane.Server/Extensions/OqtaneServiceCollectionExtensions.cs +++ b/Oqtane.Server/Extensions/OqtaneServiceCollectionExtensions.cs @@ -22,7 +22,7 @@ using Microsoft.Extensions.Configuration; using Microsoft.Extensions.Hosting; using Microsoft.Extensions.Localization; using Microsoft.Extensions.Logging; -using Microsoft.OpenApi.Models; +using Microsoft.OpenApi; using Oqtane.Extensions; using Oqtane.Infrastructure; using Oqtane.Interfaces;