From e5553cbac7d98807c65d773063832261f21a3e37 Mon Sep 17 00:00:00 2001 From: Jeff Kluge Date: Mon, 1 Jul 2024 19:56:05 -0700 Subject: [PATCH] Address comments --- test/TestUtilities/Test.Utility/CommandRunner.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/TestUtilities/Test.Utility/CommandRunner.cs b/test/TestUtilities/Test.Utility/CommandRunner.cs index 7733f71d38c..23de091146d 100644 --- a/test/TestUtilities/Test.Utility/CommandRunner.cs +++ b/test/TestUtilities/Test.Utility/CommandRunner.cs @@ -55,7 +55,7 @@ public static CommandRunnerResult Run(string filename, string workingDirectory = process.StartInfo.Environment["UseSharedCompilation"] = bool.FalseString; process.StartInfo.Environment["DOTNET_SKIP_FIRST_TIME_EXPERIENCE"] = bool.TrueString; process.StartInfo.Environment["DOTNET_CLI_TELEMETRY_OPTOUT"] = bool.TrueString; - process.StartInfo.Environment["SuppressNETCoreSdkPreviewMessage"] = bool.FalseString; + process.StartInfo.Environment["SuppressNETCoreSdkPreviewMessage"] = bool.TrueString; if (environmentVariables != null) {