From 76b3befcc812bac351ea0fb98060ff66d075436d Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Thu, 27 Oct 2022 15:22:48 +0200 Subject: [PATCH 1/2] Updated Smidge, Npoco and MailKit --- .../Umbraco.Cms.Persistence.SqlServer.csproj | 2 +- src/Umbraco.Infrastructure/Umbraco.Infrastructure.csproj | 4 ++-- src/Umbraco.Web.Common/Umbraco.Web.Common.csproj | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Umbraco.Cms.Persistence.SqlServer/Umbraco.Cms.Persistence.SqlServer.csproj b/src/Umbraco.Cms.Persistence.SqlServer/Umbraco.Cms.Persistence.SqlServer.csproj index 4431cf255829..7d477069edd5 100644 --- a/src/Umbraco.Cms.Persistence.SqlServer/Umbraco.Cms.Persistence.SqlServer.csproj +++ b/src/Umbraco.Cms.Persistence.SqlServer/Umbraco.Cms.Persistence.SqlServer.csproj @@ -5,7 +5,7 @@ - + diff --git a/src/Umbraco.Infrastructure/Umbraco.Infrastructure.csproj b/src/Umbraco.Infrastructure/Umbraco.Infrastructure.csproj index 19ac4606d1b7..6b922545bb0a 100644 --- a/src/Umbraco.Infrastructure/Umbraco.Infrastructure.csproj +++ b/src/Umbraco.Infrastructure/Umbraco.Infrastructure.csproj @@ -14,7 +14,7 @@ - + @@ -25,7 +25,7 @@ - + diff --git a/src/Umbraco.Web.Common/Umbraco.Web.Common.csproj b/src/Umbraco.Web.Common/Umbraco.Web.Common.csproj index 7d5bc5ca743d..00feb6d8b6a6 100644 --- a/src/Umbraco.Web.Common/Umbraco.Web.Common.csproj +++ b/src/Umbraco.Web.Common/Umbraco.Web.Common.csproj @@ -15,8 +15,8 @@ - - + + From fe5dbf90f5883f4916a9257635dc00a65629a6b9 Mon Sep 17 00:00:00 2001 From: Bjarke Berg Date: Thu, 27 Oct 2022 18:39:37 +0200 Subject: [PATCH 2/2] Added missing command (after breaking interface in npoco) --- tests/Umbraco.Tests.Common/TestHelpers/TestDatabase.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/Umbraco.Tests.Common/TestHelpers/TestDatabase.cs b/tests/Umbraco.Tests.Common/TestHelpers/TestDatabase.cs index 26cc13949c7e..2d387dcdff79 100644 --- a/tests/Umbraco.Tests.Common/TestHelpers/TestDatabase.cs +++ b/tests/Umbraco.Tests.Common/TestHelpers/TestDatabase.cs @@ -78,6 +78,7 @@ public void CloseSharedConnection() public DbTransaction Transaction { get; } public IDictionary Data { get; } + public int CommandTimeout { get; set; } public ISqlContext SqlContext { get; }