aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/WixBuildTools.TestSupport/MsbuildRunner.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixBuildTools.TestSupport/MsbuildRunner.cs b/src/WixBuildTools.TestSupport/MsbuildRunner.cs
index 953ed654..97e49d6f 100644
--- a/src/WixBuildTools.TestSupport/MsbuildRunner.cs
+++ b/src/WixBuildTools.TestSupport/MsbuildRunner.cs
@@ -65,7 +65,7 @@ namespace WixBuildTools.TestSupport
65 } 65 }
66 } 66 }
67 67
68 var msbuildPath = Msbuild15Path ?? Msbuild16Path; 68 var msbuildPath = !String.IsNullOrEmpty(Msbuild15Path) ? Msbuild15Path : Msbuild16Path;
69 69
70 if (msbuildVersion == "15") 70 if (msbuildVersion == "15")
71 { 71 {