diff options
Diffstat (limited to 'src/ext')
-rw-r--r-- | src/ext/Bal/test/WixToolsetTest.ManagedHost/DncHostFixture.cs | 3 |
1 files changed, 2 insertions, 1 deletions
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 | |||
46 | var result = testEngine.RunShutdownEngine(bundleFile, baseFolder, x86: true); | 46 | var result = testEngine.RunShutdownEngine(bundleFile, baseFolder, x86: true); |
47 | var resultOutput = result.Output.ToArray(); | 47 | var resultOutput = result.Output.ToArray(); |
48 | 48 | ||
49 | if (resultOutput.Length > 0 && resultOutput[0] == "error from hostfxr: It was not possible to find any compatible framework version") | 49 | if (resultOutput.Length > 0 && (resultOutput[0] == "error from hostfxr: It was not possible to find any compatible framework version" || |
50 | resultOutput[0] == "error from hostfxr: You must install or update .NET to run this application.")) | ||
50 | { | 51 | { |
51 | WixAssert.Skip(String.Join(Environment.NewLine, resultOutput)); | 52 | WixAssert.Skip(String.Join(Environment.NewLine, resultOutput)); |
52 | } | 53 | } |