From ca5c7aaa5cb956687b3b8880b66a9d5c53aedd95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Wed, 7 Jan 2026 23:54:55 +0100 Subject: [PATCH 01/50] Update OC versions to preview. --- .../Lombiq.JsonEditor.Tests.UI.csproj | 2 +- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index 4ab7ea9..28dd887 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -1,7 +1,7 @@ - net8.0 + net10.0 diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 04a8ec1..48d05a5 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -4,7 +4,7 @@ Condition="'$(NuGetBuild)' != 'true'"/> - net8.0 + net10.0 true $(DefaultItemExcludes);.git* @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 47efdd599e563af3fa94a665f08d3f442a424e73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 9 Jan 2026 13:42:20 +0100 Subject: [PATCH 02/50] Replace UpdateValidateAndCreateAsync. --- Lombiq.JsonEditor/Controllers/AdminController.cs | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/Lombiq.JsonEditor/Controllers/AdminController.cs b/Lombiq.JsonEditor/Controllers/AdminController.cs index 0451d0f..02531f2 100644 --- a/Lombiq.JsonEditor/Controllers/AdminController.cs +++ b/Lombiq.JsonEditor/Controllers/AdminController.cs @@ -190,7 +190,7 @@ private async Task PostContentAsync(ContentItem model, bool draft contentItem.Merge(model); - var result = await _contentManager.UpdateValidateAndCreateAsync(contentItem, VersionOptions.Draft); + var result = await UpdateValidateAndCreateAsync(_contentManager, contentItem, VersionOptions.Draft); if (CheckContentValidationResult(result) is { } problem) return problem; } @@ -206,6 +206,18 @@ private async Task PostContentAsync(ContentItem model, bool draft return Ok(contentItem); } + private static async Task UpdateValidateAndCreateAsync( + IContentManager contentManager, + ContentItem contentItem, + VersionOptions options) + { + await contentManager.UpdateAsync(contentItem); + var result = await contentManager.ValidateAsync(contentItem); + if (result.Succeeded) await contentManager.CreateAsync(contentItem, options); + + return result; + } + private ActionResult CheckContentValidationResult(ContentValidateResult result) { if (!result.Succeeded) From 62fcab8c2c9f9ada9a01cd4895e58003d0ae91ec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Wed, 14 Jan 2026 17:28:50 +0100 Subject: [PATCH 03/50] Upgrade OC preview. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 48d05a5..c01d42f 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 550cb7bccc75165c9fd03e15c58eeaa742027717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Tue, 20 Jan 2026 00:17:19 +0100 Subject: [PATCH 04/50] Update branch selector. --- .github/workflows/publish-nuget.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-nuget.yml b/.github/workflows/publish-nuget.yml index fac826d..8e61048 100644 --- a/.github/workflows/publish-nuget.yml +++ b/.github/workflows/publish-nuget.yml @@ -8,6 +8,6 @@ on: jobs: publish-nuget: name: Publish to NuGet - uses: Lombiq/GitHub-Actions/.github/workflows/publish-nuget.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/publish-nuget.yml@issue/OSOE-925 secrets: API_KEY: ${{ secrets.DEFAULT_NUGET_PUBLISH_API_KEY }} From 23a2d434b0fd78641520ef4fee7239853f1d05a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Tue, 20 Jan 2026 00:22:16 +0100 Subject: [PATCH 05/50] Update branch selectors. --- .github/workflows/validate-nuget-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-nuget-publish.yml b/.github/workflows/validate-nuget-publish.yml index 9f8979c..f0fd6be 100644 --- a/.github/workflows/validate-nuget-publish.yml +++ b/.github/workflows/validate-nuget-publish.yml @@ -9,4 +9,4 @@ on: jobs: validate-nuget-publish: name: Validate NuGet Publish - uses: Lombiq/GitHub-Actions/.github/workflows/validate-nuget-publish.yml@dev + uses: Lombiq/GitHub-Actions/.github/workflows/validate-nuget-publish.yml@issue/OSOE-925 From fd413dcf29233f939fd064fe2049d7451bba823f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Tue, 20 Jan 2026 12:38:24 +0100 Subject: [PATCH 06/50] CompatibilitySuppressions.xml --- CompatibilitySuppressions.xml | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CompatibilitySuppressions.xml diff --git a/CompatibilitySuppressions.xml b/CompatibilitySuppressions.xml new file mode 100644 index 0000000..8af156c --- /dev/null +++ b/CompatibilitySuppressions.xml @@ -0,0 +1,8 @@ + + + + + PKV006 + net8.0 + + \ No newline at end of file From 53434b82489a32e88333a1e826b343f00999d7d0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Tue, 20 Jan 2026 13:21:25 +0100 Subject: [PATCH 07/50] Nuget. --- Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj | 2 +- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index 28dd887..dea2877 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -21,7 +21,7 @@ - + diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index c01d42f..d90640c 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -45,10 +45,10 @@ - + - - + + Date: Tue, 20 Jan 2026 14:30:58 +0100 Subject: [PATCH 08/50] Delete all CompatibilitySuppressions so we may start from scratch. --- CompatibilitySuppressions.xml | 8 -------- 1 file changed, 8 deletions(-) delete mode 100644 CompatibilitySuppressions.xml diff --git a/CompatibilitySuppressions.xml b/CompatibilitySuppressions.xml deleted file mode 100644 index 8af156c..0000000 --- a/CompatibilitySuppressions.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - PKV006 - net8.0 - - \ No newline at end of file From 4668be7d33c22bb433867c9d7efddb509708dfc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Tue, 20 Jan 2026 19:48:05 +0100 Subject: [PATCH 09/50] CompatibilitySuppressions.xml --- Lombiq.JsonEditor.Test.UI/CompatibilitySuppressions.xml | 8 ++++++++ Lombiq.JsonEditor/CompatibilitySuppressions.xml | 8 ++++++++ 2 files changed, 16 insertions(+) create mode 100644 Lombiq.JsonEditor.Test.UI/CompatibilitySuppressions.xml create mode 100644 Lombiq.JsonEditor/CompatibilitySuppressions.xml diff --git a/Lombiq.JsonEditor.Test.UI/CompatibilitySuppressions.xml b/Lombiq.JsonEditor.Test.UI/CompatibilitySuppressions.xml new file mode 100644 index 0000000..8af156c --- /dev/null +++ b/Lombiq.JsonEditor.Test.UI/CompatibilitySuppressions.xml @@ -0,0 +1,8 @@ + + + + + PKV006 + net8.0 + + \ No newline at end of file diff --git a/Lombiq.JsonEditor/CompatibilitySuppressions.xml b/Lombiq.JsonEditor/CompatibilitySuppressions.xml new file mode 100644 index 0000000..8af156c --- /dev/null +++ b/Lombiq.JsonEditor/CompatibilitySuppressions.xml @@ -0,0 +1,8 @@ + + + + + PKV006 + net8.0 + + \ No newline at end of file From dafd28af97a97d2c6c6bac33b84d774bbb5b5c86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 22 Jan 2026 16:50:43 +0100 Subject: [PATCH 10/50] Upgrade OC preview. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index d90640c..34c597c 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 667b7fa8d30dc46229ea33e2ab51d5dbb93d3733 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 22 Jan 2026 19:40:27 +0100 Subject: [PATCH 11/50] HL nuget --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 34c597c..243b07c 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -45,10 +45,10 @@ - + - - + + Date: Thu, 22 Jan 2026 22:59:56 +0100 Subject: [PATCH 12/50] dummy From 4f973e3f23b2973001ffa8ed280789dc5eac6748 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 22 Jan 2026 23:17:10 +0100 Subject: [PATCH 13/50] Update UITT NuGet. --- Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index dea2877..1fd4b52 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -21,7 +21,7 @@ - + From ac80d405ec9bce37357374f0bf681e29e23e300d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 23 Jan 2026 12:15:16 +0100 Subject: [PATCH 14/50] UC preview update. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 243b07c..7988106 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 1ab7ab6bbbf8efc78429d759f339210d9e6fd2da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 23 Jan 2026 17:01:50 +0100 Subject: [PATCH 15/50] Update HL nuget. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 7988106..fbd2e4f 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -45,10 +45,10 @@ - + - - + + Date: Tue, 27 Jan 2026 13:42:01 +0100 Subject: [PATCH 16/50] Update OC preview. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index fbd2e4f..11efaff 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 840c1bc124a800b31752255f33ad20761d952d29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Wed, 28 Jan 2026 23:24:20 +0100 Subject: [PATCH 17/50] Update HL NuGet. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 11efaff..e0405a3 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -45,10 +45,10 @@ - + - - + + Date: Wed, 4 Feb 2026 18:04:55 +0100 Subject: [PATCH 18/50] Update OC preview. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index e0405a3..d033726 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 00d747dabe9bb9e59684ec17ee2bbadafd68cc20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 5 Feb 2026 12:15:23 +0100 Subject: [PATCH 19/50] Update OC preview. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index d033726..0305e67 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 2e4b812c15d803c3d0304f8f2d39e09c2ca5006a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 5 Feb 2026 21:24:08 +0100 Subject: [PATCH 20/50] Update HL Nuget. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 0305e67..7773139 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -45,10 +45,10 @@ - + - - + + Date: Thu, 5 Feb 2026 21:51:18 +0100 Subject: [PATCH 21/50] Update UITT nuget. --- Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index 1fd4b52..dac3baf 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -21,7 +21,7 @@ - + From 9e8df8e2b6292faf78275b63d723c51b637f8dc4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 6 Feb 2026 11:43:49 +0100 Subject: [PATCH 22/50] Upda --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 7773139..a9c762c 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 4629e8f5fc14f04767ebb6907308c30a8203c3d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 13 Feb 2026 21:44:06 +0100 Subject: [PATCH 23/50] Update OC previews to fix package downgrade. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index a9c762c..83867f0 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 6bec4a110b155564d6802f45075b28d698f72911 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sun, 22 Feb 2026 11:34:29 +0100 Subject: [PATCH 24/50] Update HL nuget. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 83867f0..7ddff39 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -45,10 +45,10 @@ - + - - + + Date: Sun, 22 Feb 2026 12:33:59 +0100 Subject: [PATCH 25/50] UITT nuget --- Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index dac3baf..d8f6cab 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -21,7 +21,7 @@ - + From 4a1a80d4bf2001dd9692a3535e2e3940518e9b3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sun, 22 Feb 2026 12:36:34 +0100 Subject: [PATCH 26/50] OC preview version --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 7ddff39..44b5c05 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 4ded41389bbf2e04bf25e487c960bdab2615bf42 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sun, 22 Feb 2026 12:49:08 +0100 Subject: [PATCH 27/50] Update HL nuget correctly. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 44b5c05..ebbeb12 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -45,10 +45,10 @@ - + - - + + Date: Sun, 22 Feb 2026 15:59:50 +0100 Subject: [PATCH 28/50] Update UITT nuget correctly. --- Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index d8f6cab..91e2623 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -21,7 +21,7 @@ - + From 57f6876312f721bc4df6c70aaa80d26fe8ac1d06 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sat, 7 Mar 2026 13:19:04 +0100 Subject: [PATCH 29/50] Update nugets. --- .../Lombiq.JsonEditor.Tests.UI.csproj | 2 +- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 18 +++++++++--------- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index 91e2623..70f2b4f 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -21,7 +21,7 @@ - + diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index ebbeb12..e2738fc 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + @@ -45,10 +45,10 @@ - + - - + + Date: Fri, 20 Mar 2026 16:46:52 +0100 Subject: [PATCH 30/50] Update OC preview. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index e2738fc..c433b0a 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 59911095515ee93a458daa84951eb6e8b7502cf1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sun, 29 Mar 2026 01:38:58 +0100 Subject: [PATCH 31/50] Update OC preview. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index c433b0a..0035e67 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 87a9ac93f8a95f59c4fbdf9f2479b318dae3ac4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sun, 29 Mar 2026 21:41:39 +0200 Subject: [PATCH 32/50] Update UITT nuget. --- Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index 70f2b4f..9703d1e 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -21,7 +21,7 @@ - + From ff8e478891dc577b129caac2a09b855539435192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Mon, 30 Mar 2026 13:45:20 +0200 Subject: [PATCH 33/50] Use SDK in all modules and themes where applicable. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 54 ++++------------------ 1 file changed, 9 insertions(+), 45 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 0035e67..5e3a22a 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -1,57 +1,21 @@ - - - - + net10.0 - true - $(DefaultItemExcludes);.git* + + + + true Lombiq JSON Editor for Orchard Core - Lombiq Technologies - Copyright © 2021, Lombiq Technologies Ltd. - Lombiq JSON Editor for Orchard Core: Orchard Core module for displaying a JSON Editor like on (https://jsoneditoronline.org/. See the project website for detailed documentation. - NuGetIcon.png + 2021 + Orchard Core module for displaying a JSON Editor like on (https://jsoneditoronline.org/. See the project website for detailed documentation. OrchardCore;Lombiq;AspNetCore;JSONEditor https://github.com/Lombiq/Orchard-JSON-Editor https://github.com/Lombiq/Orchard-JSON-Editor - BSD-3-Clause - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + From da6912cce3a205846f462db771621f57c34df1ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Tue, 31 Mar 2026 22:24:48 +0200 Subject: [PATCH 34/50] Remove `true` from projects. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 5e3a22a..fc21af8 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -7,7 +7,6 @@ - true Lombiq JSON Editor for Orchard Core 2021 Orchard Core module for displaying a JSON Editor like on (https://jsoneditoronline.org/. See the project website for detailed documentation. From 9e67c92856eaaf8d6898af1e2f4a34aad74b56cc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Tue, 31 Mar 2026 23:31:56 +0200 Subject: [PATCH 35/50] Update NuGet versions. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index fc21af8..d6434aa 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -4,7 +4,7 @@ - + Lombiq JSON Editor for Orchard Core @@ -16,5 +16,5 @@ - + From 2eb0b61a878322dfad136903f7fefed98926adc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Wed, 1 Apr 2026 00:25:09 +0200 Subject: [PATCH 36/50] Use UI Test SDK where applicable. --- .../Lombiq.JsonEditor.Tests.UI.csproj | 28 ++++++------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index 9703d1e..7cdb5b8 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -1,32 +1,20 @@ - - + net10.0 + + + Lombiq JSON Editor for Orchard Core - UI Test Extensions - Lombiq Technologies - Copyright © 2021, Lombiq Technologies Ltd. - Lombiq JSON Editor for Orchard Core - UI Test Extensions: Extensions to aid in UI testing Lombiq JSON Editor for Orchard Core. - NuGetIcon.png + 2021 + Extensions to aid in UI testing Lombiq JSON Editor for Orchard Core. OrchardCore;Lombiq;AspNetCore;JSONEditor https://github.com/Lombiq/Orchard-JSON-Editor https://github.com/Lombiq/Orchard-JSON-Editor/tree/dev/Lombiq.JSONEditor.Tests.UI - BSD-3-Clause - - - - - - - - - - - - - + + From 52049ac2f57f50dc171422ad46184114e90170b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 Apr 2026 15:19:55 +0200 Subject: [PATCH 37/50] Create new SLNX files. --- Lombiq.JsonEditor.slnx | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Lombiq.JsonEditor.slnx diff --git a/Lombiq.JsonEditor.slnx b/Lombiq.JsonEditor.slnx new file mode 100644 index 0000000..e4f2893 --- /dev/null +++ b/Lombiq.JsonEditor.slnx @@ -0,0 +1,4 @@ + + + + From a16f8f0e915a3c2aefa9fc71c47153fa209c0de3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Thu, 2 Apr 2026 16:04:33 +0200 Subject: [PATCH 38/50] Update validate-nuget-publish.yml issue branch. --- .github/workflows/validate-nuget-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-nuget-publish.yml b/.github/workflows/validate-nuget-publish.yml index f0fd6be..4894308 100644 --- a/.github/workflows/validate-nuget-publish.yml +++ b/.github/workflows/validate-nuget-publish.yml @@ -9,4 +9,4 @@ on: jobs: validate-nuget-publish: name: Validate NuGet Publish - uses: Lombiq/GitHub-Actions/.github/workflows/validate-nuget-publish.yml@issue/OSOE-925 + uses: Lombiq/GitHub-Actions/.github/workflows/validate-nuget-publish.yml@issue/OSOE-1199 From a9ad6df229a839b1f276750db29522ad0b209c0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 3 Apr 2026 19:09:20 +0200 Subject: [PATCH 39/50] Remove SLN files. --- Lombiq.JsonEditor.sln | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 Lombiq.JsonEditor.sln diff --git a/Lombiq.JsonEditor.sln b/Lombiq.JsonEditor.sln deleted file mode 100644 index 4e458c4..0000000 --- a/Lombiq.JsonEditor.sln +++ /dev/null @@ -1,31 +0,0 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.6.33815.320 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lombiq.JsonEditor", "Lombiq.JsonEditor\Lombiq.JsonEditor.csproj", "{3EA5BC81-97A5-4513-9CAC-4DB01B439682}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Lombiq.JsonEditor.Tests.UI", "Lombiq.JsonEditor.Test.UI\Lombiq.JsonEditor.Tests.UI.csproj", "{19F9AEDF-9D1A-44EC-BAEA-FF050CF7A684}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {3EA5BC81-97A5-4513-9CAC-4DB01B439682}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {3EA5BC81-97A5-4513-9CAC-4DB01B439682}.Debug|Any CPU.Build.0 = Debug|Any CPU - {3EA5BC81-97A5-4513-9CAC-4DB01B439682}.Release|Any CPU.ActiveCfg = Release|Any CPU - {3EA5BC81-97A5-4513-9CAC-4DB01B439682}.Release|Any CPU.Build.0 = Release|Any CPU - {19F9AEDF-9D1A-44EC-BAEA-FF050CF7A684}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {19F9AEDF-9D1A-44EC-BAEA-FF050CF7A684}.Debug|Any CPU.Build.0 = Debug|Any CPU - {19F9AEDF-9D1A-44EC-BAEA-FF050CF7A684}.Release|Any CPU.ActiveCfg = Release|Any CPU - {19F9AEDF-9D1A-44EC-BAEA-FF050CF7A684}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {67F3FCAA-D525-42C7-9743-B8D896F485BA} - EndGlobalSection -EndGlobal From cb2b87a42ab917917e4444f3ed849052373bc0b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Tue, 7 Apr 2026 13:09:25 +0200 Subject: [PATCH 40/50] Move "See the project website for detailed documentation." boilerplate text into built-in DescriptionBody suffix. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index d6434aa..6cb670a 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -9,7 +9,7 @@ Lombiq JSON Editor for Orchard Core 2021 - Orchard Core module for displaying a JSON Editor like on (https://jsoneditoronline.org/. See the project website for detailed documentation. + Orchard Core module for displaying a JSON Editor like on (https://jsoneditoronline.org/. OrchardCore;Lombiq;AspNetCore;JSONEditor https://github.com/Lombiq/Orchard-JSON-Editor https://github.com/Lombiq/Orchard-JSON-Editor From fe9c716873c3557a63f36d951d63b6cbfd0ba5fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Wed, 8 Apr 2026 22:19:04 +0200 Subject: [PATCH 41/50] Update OC preview. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 0035e67..201b1c4 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 88f27c91504272865d5b289e2d70bccc6ba01505 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sat, 11 Apr 2026 16:18:57 +0200 Subject: [PATCH 42/50] Fix obsolete "As". --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 201b1c4..4df5952 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From 469b5e569261b143eafa3fcd2c47f63171193560 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sun, 12 Apr 2026 00:28:43 +0200 Subject: [PATCH 43/50] Update HL Nuget. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 4df5952..94e1dff 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -45,10 +45,10 @@ - + - - + + Date: Mon, 13 Apr 2026 14:14:56 +0200 Subject: [PATCH 44/50] Update OC preview. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 94e1dff..619f3e6 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -32,12 +32,12 @@ - - - - - - + + + + + + From e7f30609863aae5935866c63c080f52b825dc242 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Mon, 13 Apr 2026 16:24:17 +0200 Subject: [PATCH 45/50] Update UITT nuget. --- Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index 9703d1e..2d9bc3f 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -21,7 +21,7 @@ - + From b3cad22878eff72f3e18897304d284fa4abb6f49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Mon, 20 Apr 2026 10:49:47 +0200 Subject: [PATCH 46/50] Update UITT NuGet. --- Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index 2d9bc3f..0cce0d7 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -21,7 +21,7 @@ - + From f3fcdc53bf2635ca4f84112b0ca309651e823baa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Fri, 24 Apr 2026 17:05:22 +0200 Subject: [PATCH 47/50] Cleanup. --- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 1 - 1 file changed, 1 deletion(-) diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 6cb670a..95fd1a5 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -12,7 +12,6 @@ Orchard Core module for displaying a JSON Editor like on (https://jsoneditoronline.org/. OrchardCore;Lombiq;AspNetCore;JSONEditor https://github.com/Lombiq/Orchard-JSON-Editor - https://github.com/Lombiq/Orchard-JSON-Editor From 24cb22708dd8470b58fbeadfc389fffba27a2f6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sat, 25 Apr 2026 01:56:28 +0200 Subject: [PATCH 48/50] Update NuGet and apply library SDK where applicable --- Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj | 4 ++-- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index 7cdb5b8..a0df35e 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -4,7 +4,7 @@ - + Lombiq JSON Editor for Orchard Core - UI Test Extensions @@ -16,5 +16,5 @@ - + diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 95fd1a5..7b8874e 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -4,7 +4,7 @@ - + Lombiq JSON Editor for Orchard Core @@ -15,5 +15,5 @@ - + From a937598f20dedc3ed0ec4cda3047abf71a0eef1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Mon, 27 Apr 2026 23:57:04 +0200 Subject: [PATCH 49/50] Update GHA branch selectors. --- .github/workflows/validate-nuget-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/validate-nuget-publish.yml b/.github/workflows/validate-nuget-publish.yml index 4894308..f0fd6be 100644 --- a/.github/workflows/validate-nuget-publish.yml +++ b/.github/workflows/validate-nuget-publish.yml @@ -9,4 +9,4 @@ on: jobs: validate-nuget-publish: name: Validate NuGet Publish - uses: Lombiq/GitHub-Actions/.github/workflows/validate-nuget-publish.yml@issue/OSOE-1199 + uses: Lombiq/GitHub-Actions/.github/workflows/validate-nuget-publish.yml@issue/OSOE-925 From fdb6cf4ef5f7bab51219bd9dfd8d6064f68d9845 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A1ra=20El-Saig?= Date: Sat, 16 May 2026 15:50:38 +0200 Subject: [PATCH 50/50] Update SDKs. --- Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj | 4 ++-- Lombiq.JsonEditor/Lombiq.JsonEditor.csproj | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj index a0df35e..6922e00 100644 --- a/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj +++ b/Lombiq.JsonEditor.Test.UI/Lombiq.JsonEditor.Tests.UI.csproj @@ -4,7 +4,7 @@ - + Lombiq JSON Editor for Orchard Core - UI Test Extensions @@ -16,5 +16,5 @@ - + diff --git a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj index 7b8874e..3f4ed0f 100644 --- a/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj +++ b/Lombiq.JsonEditor/Lombiq.JsonEditor.csproj @@ -4,7 +4,7 @@ - + Lombiq JSON Editor for Orchard Core @@ -15,5 +15,5 @@ - +