From fa54ae44e565d4e8d273627f2fc73e670febeea2 Mon Sep 17 00:00:00 2001 From: Sean Hall Date: Wed, 3 Aug 2022 10:31:20 -0500 Subject: Update expected message in CanLoadFDDx86EarliestCoreMBA. --- src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/ext') diff --git a/src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs b/src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs index 3aa2bec7..02059faa 100644 --- a/src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs +++ b/src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs @@ -46,7 +46,8 @@ namespace WixToolsetTest.ManagedHost var result = testEngine.RunShutdownEngine(bundleFile, baseFolder, x86: true); var resultOutput = result.Output.ToArray(); - if (resultOutput.Length > 0 && resultOutput[0] == "error from hostfxr: It was not possible to find any compatible framework version") + if (resultOutput.Length > 0 && (resultOutput[0] == "error from hostfxr: It was not possible to find any compatible framework version" || + resultOutput[0] == "error from hostfxr: You must install or update .NET to run this application.")) { WixAssert.Skip(String.Join(Environment.NewLine, resultOutput)); } -- cgit v1.2.3-55-g6feb