From 7000075ca066d903c6c55b5354c0dd5d8b26e459 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Mon, 30 Jun 2025 13:36:43 +0200 Subject: [PATCH 01/13] Remove MSTest.Assert.Extensions --- Directory.Build.targets | 1 - 1 file changed, 1 deletion(-) diff --git a/Directory.Build.targets b/Directory.Build.targets index 24cf690349..40981720ca 100644 --- a/Directory.Build.targets +++ b/Directory.Build.targets @@ -61,7 +61,6 @@ true - 3.9.3 3.9.3 - 1.0.3-preview 2.4.2 2.4.5 2.4.2 From 0c24683f52a8ac54439a0b811889ee1d63f3d6b2 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Tue, 1 Jul 2025 04:14:49 +0200 Subject: [PATCH 03/13] Update RunConfigurationTests.cs --- .../RunSettings/RunConfigurationTests.cs | 32 +++++++++---------- 1 file changed, 15 insertions(+), 17 deletions(-) diff --git a/test/Microsoft.TestPlatform.ObjectModel.UnitTests/RunSettings/RunConfigurationTests.cs b/test/Microsoft.TestPlatform.ObjectModel.UnitTests/RunSettings/RunConfigurationTests.cs index cc548cd386..ae3df9a988 100644 --- a/test/Microsoft.TestPlatform.ObjectModel.UnitTests/RunSettings/RunConfigurationTests.cs +++ b/test/Microsoft.TestPlatform.ObjectModel.UnitTests/RunSettings/RunConfigurationTests.cs @@ -9,8 +9,6 @@ using Microsoft.VisualStudio.TestPlatform.PlatformAbstractions; using Microsoft.VisualStudio.TestTools.UnitTesting; -using MSTest.TestFramework.AssertExtensions; - namespace Microsoft.TestPlatform.ObjectModel.UnitTests; [TestClass] @@ -172,9 +170,9 @@ public void RunConfigurationFromXmlThrowsSettingsExceptionIfBatchSizeIsInvalid() "; - Assert.That.Throws( - () => XmlRunSettingsUtilities.GetRunConfigurationNode(settingsXml)) - .WithExactMessage("Invalid settings 'RunConfiguration'. Invalid value 'Foo' specified for 'BatchSize'."); + var exception = Assert.ThrowsExactly( + () => XmlRunSettingsUtilities.GetRunConfigurationNode(settingsXml)); + Assert.AreEqual("Invalid settings 'RunConfiguration'. Invalid value 'Foo' specified for 'BatchSize'.", exception.Message); } [TestMethod] @@ -189,9 +187,9 @@ public void RunConfigurationFromXmlThrowsSettingsExceptionIfTestSessionTimeoutIs "; - Assert.That.Throws( - () => XmlRunSettingsUtilities.GetRunConfigurationNode(settingsXml)) - .WithExactMessage("Invalid settings 'RunConfiguration'. Invalid value '-1' specified for 'TestSessionTimeout'."); + var exception = Assert.ThrowsExactly( + () => XmlRunSettingsUtilities.GetRunConfigurationNode(settingsXml)); + Assert.AreEqual("Invalid settings 'RunConfiguration'. Invalid value '-1' specified for 'TestSessionTimeout'.", exception.Message); } [TestMethod] @@ -221,9 +219,9 @@ public void RunConfigurationFromXmlThrowsSettingsExceptionIfExecutionThreadApart "; - Assert.That.Throws( - () => XmlRunSettingsUtilities.GetRunConfigurationNode(settingsXml)) - .WithExactMessage("Invalid settings 'RunConfiguration'. Invalid value 'RandomValue' specified for 'ExecutionThreadApartmentState'."); + var exception = Assert.ThrowsExactly( + () => XmlRunSettingsUtilities.GetRunConfigurationNode(settingsXml)); + Assert.AreEqual("Invalid settings 'RunConfiguration'. Invalid value 'RandomValue' specified for 'ExecutionThreadApartmentState'.", exception.Message); } [TestMethod] @@ -237,9 +235,9 @@ public void RunConfigurationFromXmlThrowsSettingsExceptionIfBatchSizeIsNegativeI "; - Assert.That.Throws( - () => XmlRunSettingsUtilities.GetRunConfigurationNode(settingsXml)) - .WithExactMessage("Invalid settings 'RunConfiguration'. Invalid value '-10' specified for 'BatchSize'."); + var exception = Assert.ThrowsExactly( + () => XmlRunSettingsUtilities.GetRunConfigurationNode(settingsXml)); + Assert.AreEqual("Invalid settings 'RunConfiguration'. Invalid value '-10' specified for 'BatchSize'.", exception.Message); } [DataRow(true)] @@ -348,8 +346,8 @@ public void RunConfigurationShouldThrowSettingsExceptionIfResultsirectoryIsEmpty "; - Assert.That.Throws( - () => XmlRunSettingsUtilities.GetRunConfigurationNode(settingsXml)) - .WithExactMessage("Invalid settings 'RunConfiguration'. Invalid value '' specified for 'ResultsDirectory'."); + var exception = Assert.ThrowsExactly( + () => XmlRunSettingsUtilities.GetRunConfigurationNode(settingsXml)); + Assert.AreEqual("Invalid settings 'RunConfiguration'. Invalid value '' specified for 'ResultsDirectory'.", exception.Message); } } From 2e96239533edb52d104646cee2e1a4b28c8f687b Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Tue, 1 Jul 2025 04:16:41 +0200 Subject: [PATCH 04/13] Update InferRunSettingsHelperTests.cs --- .../InferRunSettingsHelperTests.cs | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs b/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs index 897c96c87d..8ddaef577a 100644 --- a/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs +++ b/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs @@ -12,8 +12,6 @@ using Microsoft.VisualStudio.TestPlatform.Utilities; using Microsoft.VisualStudio.TestTools.UnitTesting; -using MSTest.TestFramework.AssertExtensions; - using OMResources = Microsoft.VisualStudio.TestPlatform.ObjectModel.Resources.CommonResources; namespace Microsoft.TestPlatform.Utilities.UnitTests; @@ -42,8 +40,8 @@ public void UpdateRunSettingsShouldThrowIfRunSettingsNodeDoesNotExist() Action action = () => InferRunSettingsHelper.UpdateRunSettingsWithUserProvidedSwitches(xmlDocument, Architecture.X86, Framework.DefaultFramework, "temp"); - Assert.That.Throws(action) - .WithMessage("An error occurred while loading the settings. Error: Could not find 'RunSettings' node.."); + var exception = Assert.ThrowsExactly(action); + Assert.AreEqual("An error occurred while loading the settings. Error: Could not find 'RunSettings' node..", exception.Message); } [TestMethod] @@ -54,8 +52,8 @@ public void UpdateRunSettingsShouldThrowIfPlatformNodeIsInvalid() Action action = () => InferRunSettingsHelper.UpdateRunSettingsWithUserProvidedSwitches(xmlDocument, Architecture.X86, Framework.DefaultFramework, "temp"); - Assert.That.Throws(action) - .WithMessage("An error occurred while loading the settings. Error: Invalid setting 'RunConfiguration'. Invalid value 'foo' specified for 'TargetPlatform'."); + var exception = Assert.ThrowsExactly(action); + Assert.AreEqual("An error occurred while loading the settings. Error: Invalid setting 'RunConfiguration'. Invalid value 'foo' specified for 'TargetPlatform'.", exception.Message); } [TestMethod] @@ -66,8 +64,8 @@ public void UpdateRunSettingsShouldThrowIfFrameworkNodeIsInvalid() Action action = () => InferRunSettingsHelper.UpdateRunSettingsWithUserProvidedSwitches(xmlDocument, Architecture.X86, Framework.DefaultFramework, "temp"); - Assert.That.Throws(action) - .WithMessage("An error occurred while loading the settings. Error: Invalid setting 'RunConfiguration'. Invalid value 'foo' specified for 'TargetFrameworkVersion'."); + var exception = Assert.ThrowsExactly(action); + Assert.AreEqual("An error occurred while loading the settings. Error: Invalid setting 'RunConfiguration'. Invalid value 'foo' specified for 'TargetFrameworkVersion'.", exception.Message); } [TestMethod] From d1b68be9c2b4b0cc4f07d182d2365b3238ed2960 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Tue, 1 Jul 2025 04:17:56 +0200 Subject: [PATCH 05/13] Update MSTestSettingsUtilitiesTests.cs --- .../MSTestSettingsUtilitiesTests.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test/Microsoft.TestPlatform.Utilities.UnitTests/MSTestSettingsUtilitiesTests.cs b/test/Microsoft.TestPlatform.Utilities.UnitTests/MSTestSettingsUtilitiesTests.cs index 7b5e257b1d..d7b3e8baf0 100644 --- a/test/Microsoft.TestPlatform.Utilities.UnitTests/MSTestSettingsUtilitiesTests.cs +++ b/test/Microsoft.TestPlatform.Utilities.UnitTests/MSTestSettingsUtilitiesTests.cs @@ -7,8 +7,6 @@ using Microsoft.VisualStudio.TestPlatform.Utilities; using Microsoft.VisualStudio.TestTools.UnitTesting; -using MSTest.TestFramework.AssertExtensions; - namespace Microsoft.TestPlatform.Utilities.Tests; [TestClass] @@ -50,7 +48,8 @@ public void ImportShouldThrowIfNotLegacySettingsFile() MSTestSettingsUtilities.Import( "C:\\temp\\r.runsettings", xmlDocument); - Assert.That.Throws(action).WithMessage("Unexpected settings file specified."); + var exception = Assert.ThrowsExactly(action); + Assert.AreEqual("Unexpected settings file specified.", exception.Message); } [TestMethod] @@ -65,7 +64,8 @@ public void ImportShouldThrowIfDefaultRunSettingsIsIncorrect() MSTestSettingsUtilities.Import( "C:\\temp\\r.testsettings", xmlDocument); - Assert.That.Throws(action).WithMessage("Could not find 'RunSettings' node."); + var exception = Assert.ThrowsExactly(action); + Assert.AreEqual("Could not find 'RunSettings' node.", exception.Message); } [TestMethod] From 0f6f4cd32da71b0cbe9b4ad8f388f0e1f93e1cf6 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Tue, 1 Jul 2025 04:20:22 +0200 Subject: [PATCH 06/13] Update TestPluginDiscovererTests.cs --- .../ExtensionFramework/TestPluginDiscovererTests.cs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/Microsoft.TestPlatform.Common.UnitTests/ExtensionFramework/TestPluginDiscovererTests.cs b/test/Microsoft.TestPlatform.Common.UnitTests/ExtensionFramework/TestPluginDiscovererTests.cs index 15fdc0702a..21865661ce 100644 --- a/test/Microsoft.TestPlatform.Common.UnitTests/ExtensionFramework/TestPluginDiscovererTests.cs +++ b/test/Microsoft.TestPlatform.Common.UnitTests/ExtensionFramework/TestPluginDiscovererTests.cs @@ -18,8 +18,6 @@ using Microsoft.VisualStudio.TestPlatform.ObjectModel.Logging; using Microsoft.VisualStudio.TestTools.UnitTesting; -using MSTest.TestFramework.AssertExtensions; - namespace TestPlatform.Common.UnitTests.ExtensionFramework; [TestClass] @@ -132,7 +130,7 @@ public void GetTestExtensionsInformationShouldNotAbortOnFaultyExtensions() var testExtensions = TestPluginDiscoverer.GetTestExtensionsInformation(pathToExtensions); - Assert.That.DoesNotThrow(() => TestPluginDiscoverer.GetTestExtensionsInformation(pathToExtensions)); + _ = TestPluginDiscoverer.GetTestExtensionsInformation(pathToExtensions); } #region Implementations From 84aad4fd63a921ba5fce0296c879914b564362cc Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Tue, 1 Jul 2025 08:38:54 +0200 Subject: [PATCH 07/13] Fix build error --- .../ExtensionFramework/TestPluginDiscovererTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.TestPlatform.Common.UnitTests/ExtensionFramework/TestPluginDiscovererTests.cs b/test/Microsoft.TestPlatform.Common.UnitTests/ExtensionFramework/TestPluginDiscovererTests.cs index 21865661ce..de46d6098c 100644 --- a/test/Microsoft.TestPlatform.Common.UnitTests/ExtensionFramework/TestPluginDiscovererTests.cs +++ b/test/Microsoft.TestPlatform.Common.UnitTests/ExtensionFramework/TestPluginDiscovererTests.cs @@ -128,7 +128,7 @@ public void GetTestExtensionsInformationShouldNotAbortOnFaultyExtensions() typeof(TestPluginDiscovererTests).Assembly.Location, }; - var testExtensions = TestPluginDiscoverer.GetTestExtensionsInformation(pathToExtensions); + _ = TestPluginDiscoverer.GetTestExtensionsInformation(pathToExtensions); _ = TestPluginDiscoverer.GetTestExtensionsInformation(pathToExtensions); } From 34eda29b73427ad8f7eb75f57049dba4aa8a17b3 Mon Sep 17 00:00:00 2001 From: Youssef Victor Date: Tue, 1 Jul 2025 10:46:25 +0200 Subject: [PATCH 08/13] Fix test --- .../InferRunSettingsHelperTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs b/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs index 8ddaef577a..d786875877 100644 --- a/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs +++ b/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs @@ -53,7 +53,7 @@ public void UpdateRunSettingsShouldThrowIfPlatformNodeIsInvalid() Action action = () => InferRunSettingsHelper.UpdateRunSettingsWithUserProvidedSwitches(xmlDocument, Architecture.X86, Framework.DefaultFramework, "temp"); var exception = Assert.ThrowsExactly(action); - Assert.AreEqual("An error occurred while loading the settings. Error: Invalid setting 'RunConfiguration'. Invalid value 'foo' specified for 'TargetPlatform'.", exception.Message); + Assert.AreEqual("An error occurred while loading the settings. Error: Invalid setting 'RunConfiguration'. Invalid value 'foo' specified for 'TargetPlatform'..", exception.Message); } [TestMethod] From f20bedb52c991985dd40c736e276994ea5735cf7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Wed, 2 Jul 2025 09:53:31 +0200 Subject: [PATCH 09/13] Fix dots --- .../InferRunSettingsHelperTests.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs b/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs index 8ddaef577a..d5c1de85a1 100644 --- a/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs +++ b/test/Microsoft.TestPlatform.Utilities.UnitTests/InferRunSettingsHelperTests.cs @@ -53,7 +53,7 @@ public void UpdateRunSettingsShouldThrowIfPlatformNodeIsInvalid() Action action = () => InferRunSettingsHelper.UpdateRunSettingsWithUserProvidedSwitches(xmlDocument, Architecture.X86, Framework.DefaultFramework, "temp"); var exception = Assert.ThrowsExactly(action); - Assert.AreEqual("An error occurred while loading the settings. Error: Invalid setting 'RunConfiguration'. Invalid value 'foo' specified for 'TargetPlatform'.", exception.Message); + Assert.AreEqual("An error occurred while loading the settings. Error: Invalid setting 'RunConfiguration'. Invalid value 'foo' specified for 'TargetPlatform'..", exception.Message); } [TestMethod] @@ -65,7 +65,7 @@ public void UpdateRunSettingsShouldThrowIfFrameworkNodeIsInvalid() Action action = () => InferRunSettingsHelper.UpdateRunSettingsWithUserProvidedSwitches(xmlDocument, Architecture.X86, Framework.DefaultFramework, "temp"); var exception = Assert.ThrowsExactly(action); - Assert.AreEqual("An error occurred while loading the settings. Error: Invalid setting 'RunConfiguration'. Invalid value 'foo' specified for 'TargetFrameworkVersion'.", exception.Message); + Assert.AreEqual("An error occurred while loading the settings. Error: Invalid setting 'RunConfiguration'. Invalid value 'foo' specified for 'TargetFrameworkVersion'..", exception.Message); } [TestMethod] From 18fee0b7e94c0b70cec6561908ef5e66221cfde3 Mon Sep 17 00:00:00 2001 From: Youssef1313 Date: Tue, 15 Jul 2025 19:31:28 +0200 Subject: [PATCH 10/13] Add dependency --- ...ft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj | 1 + .../SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj | 1 + 2 files changed, 2 insertions(+) diff --git a/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj b/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj index 3d675a513f..c637d85c72 100644 --- a/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj +++ b/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj @@ -20,6 +20,7 @@ + diff --git a/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj b/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj index 6091565488..d290176fd6 100644 --- a/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj +++ b/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj @@ -15,6 +15,7 @@ + From 09479055165ea8a0d89fc6943f5b1e3fed04433e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Wed, 16 Jul 2025 10:10:58 +0200 Subject: [PATCH 11/13] Fix duplicate references --- ...ft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj | 1 - .../SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj | 1 - 2 files changed, 2 deletions(-) diff --git a/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj b/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj index c637d85c72..3d675a513f 100644 --- a/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj +++ b/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj @@ -20,7 +20,6 @@ - diff --git a/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj b/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj index d290176fd6..6091565488 100644 --- a/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj +++ b/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj @@ -15,7 +15,6 @@ - From 22891065c6be2018f94887ea02081e59fc907212 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Wed, 16 Jul 2025 16:55:39 +0200 Subject: [PATCH 12/13] Revert "Fix duplicate references" This reverts commit 09479055165ea8a0d89fc6943f5b1e3fed04433e. --- ...ft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj | 1 + .../SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj | 1 + 2 files changed, 2 insertions(+) diff --git a/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj b/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj index 3d675a513f..c637d85c72 100644 --- a/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj +++ b/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj @@ -20,6 +20,7 @@ + diff --git a/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj b/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj index 6091565488..d290176fd6 100644 --- a/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj +++ b/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj @@ -15,6 +15,7 @@ + From f7364547f45afce6035ca860fef47ce20336c6a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Jare=C5=A1?= Date: Wed, 16 Jul 2025 17:02:44 +0200 Subject: [PATCH 13/13] condition --- ...t.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj | 2 +- .../SettingsMigrator.UnitTests.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj b/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj index c637d85c72..d8d3e66ebf 100644 --- a/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj +++ b/test/DataCollectors/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests/Microsoft.TestPlatform.Extensions.EventLogCollector.UnitTests.csproj @@ -20,7 +20,7 @@ - + diff --git a/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj b/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj index d290176fd6..03f7b9ec40 100644 --- a/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj +++ b/test/SettingsMigrator.UnitTests/SettingsMigrator.UnitTests.csproj @@ -15,7 +15,7 @@ - +