diff options
-rw-r--r-- | src/WixBuildTools.TestSupport/MsbuildRunner.cs | 2 |
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 | { |