From fdb0bed960244ffd782814bd6fd654851ef02a04 Mon Sep 17 00:00:00 2001 From: Nikolaj Brask-Nielsen Date: Fri, 18 Aug 2023 16:04:37 +0200 Subject: [PATCH 1/2] test: Simplify test project references --- tests/Umbraco.TestData/Umbraco.TestData.csproj | 6 +----- .../Umbraco.Tests.Benchmarks.csproj | 4 +--- tests/Umbraco.Tests.Common/Umbraco.Tests.Common.csproj | 5 +---- .../Umbraco.Tests.Integration.csproj | 10 ++++------ .../Umbraco.Tests.UnitTests.csproj | 8 +------- 5 files changed, 8 insertions(+), 25 deletions(-) diff --git a/tests/Umbraco.TestData/Umbraco.TestData.csproj b/tests/Umbraco.TestData/Umbraco.TestData.csproj index fd5335ecc6..c118664df2 100644 --- a/tests/Umbraco.TestData/Umbraco.TestData.csproj +++ b/tests/Umbraco.TestData/Umbraco.TestData.csproj @@ -2,11 +2,7 @@ - - - - - + diff --git a/tests/Umbraco.Tests.Benchmarks/Umbraco.Tests.Benchmarks.csproj b/tests/Umbraco.Tests.Benchmarks/Umbraco.Tests.Benchmarks.csproj index 1bc14388f0..66f4bda79b 100644 --- a/tests/Umbraco.Tests.Benchmarks/Umbraco.Tests.Benchmarks.csproj +++ b/tests/Umbraco.Tests.Benchmarks/Umbraco.Tests.Benchmarks.csproj @@ -12,8 +12,6 @@ - - - + diff --git a/tests/Umbraco.Tests.Common/Umbraco.Tests.Common.csproj b/tests/Umbraco.Tests.Common/Umbraco.Tests.Common.csproj index 26d1baf85b..ae194a9f77 100644 --- a/tests/Umbraco.Tests.Common/Umbraco.Tests.Common.csproj +++ b/tests/Umbraco.Tests.Common/Umbraco.Tests.Common.csproj @@ -17,9 +17,6 @@ - - - - + diff --git a/tests/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj b/tests/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj index 069fb7e5a7..8080edf216 100644 --- a/tests/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj +++ b/tests/Umbraco.Tests.Integration/Umbraco.Tests.Integration.csproj @@ -20,12 +20,6 @@ - - - - - - ResXFileCodeGenerator @@ -51,4 +45,8 @@ + + + + diff --git a/tests/Umbraco.Tests.UnitTests/Umbraco.Tests.UnitTests.csproj b/tests/Umbraco.Tests.UnitTests/Umbraco.Tests.UnitTests.csproj index 8e7d3175f5..b982ad65c8 100644 --- a/tests/Umbraco.Tests.UnitTests/Umbraco.Tests.UnitTests.csproj +++ b/tests/Umbraco.Tests.UnitTests/Umbraco.Tests.UnitTests.csproj @@ -11,14 +11,8 @@ - + - - - - - - From 5c7b3a3d485698104ccf2ff3ff8e96f74fc73a9f Mon Sep 17 00:00:00 2001 From: Ronald Barendse Date: Fri, 1 Sep 2023 16:45:06 +0200 Subject: [PATCH 2/2] Change default UpgradeUnattended value to true (#13281) --- src/Umbraco.Core/Configuration/Models/UnattendedSettings.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Umbraco.Core/Configuration/Models/UnattendedSettings.cs b/src/Umbraco.Core/Configuration/Models/UnattendedSettings.cs index 577fb9a2d9..7f757d81c0 100644 --- a/src/Umbraco.Core/Configuration/Models/UnattendedSettings.cs +++ b/src/Umbraco.Core/Configuration/Models/UnattendedSettings.cs @@ -13,7 +13,7 @@ namespace Umbraco.Cms.Core.Configuration.Models; public class UnattendedSettings { private const bool StaticInstallUnattended = false; - private const bool StaticUpgradeUnattended = false; + private const bool StaticUpgradeUnattended = true; /// /// Gets or sets a value indicating whether unattended installs are enabled.