From e718d61f854eab06065b4a960647e53c5d2e1608 Mon Sep 17 00:00:00 2001 From: Vlad Ma-iu-shan Date: Thu, 22 Feb 2024 11:40:00 +0000 Subject: [PATCH] .NET 3.5 compile fix: string.IsNullOrWhiteSpace not found Merge-request: TC-MR-9135 Merged-by: Vladislav Ma-iu-shan --- TeamCity.VSTest.TestLogger/FailedTestsReportWriter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TeamCity.VSTest.TestLogger/FailedTestsReportWriter.cs b/TeamCity.VSTest.TestLogger/FailedTestsReportWriter.cs index 3789b52..c69d938 100644 --- a/TeamCity.VSTest.TestLogger/FailedTestsReportWriter.cs +++ b/TeamCity.VSTest.TestLogger/FailedTestsReportWriter.cs @@ -45,7 +45,7 @@ public void ReportFailedTest(TestCase testCase) if (_reportWriter == null) return; - if (string.IsNullOrWhiteSpace(testCase.FullyQualifiedName)) + if (Strings.IsNullOrWhiteSpace(testCase.FullyQualifiedName)) return; var testName = GetTestNameForRetry(testCase.FullyQualifiedName);