aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Preprocessor.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2018-07-27 00:35:52 -0700
committerRob Mensching <rob@firegiant.com>2018-07-27 11:31:18 -0700
commitc8c73ccddedcb64f9989e3d5a9f15240b476b551 (patch)
tree099f35daf71912b211223abcefafc97068971217 /src/WixToolset.Core/Preprocessor.cs
parent854e616eb3516c7405691b679617aa08c1dd1cdd (diff)
downloadwix-c8c73ccddedcb64f9989e3d5a9f15240b476b551.tar.gz
wix-c8c73ccddedcb64f9989e3d5a9f15240b476b551.tar.bz2
wix-c8c73ccddedcb64f9989e3d5a9f15240b476b551.zip
Remove WixFileNotFoundException, report checked paths and improve bind path command-line parsing
Diffstat (limited to 'src/WixToolset.Core/Preprocessor.cs')
-rw-r--r--src/WixToolset.Core/Preprocessor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/WixToolset.Core/Preprocessor.cs b/src/WixToolset.Core/Preprocessor.cs
index ac8cefe3..aca954bd 100644
--- a/src/WixToolset.Core/Preprocessor.cs
+++ b/src/WixToolset.Core/Preprocessor.cs
@@ -649,7 +649,7 @@ namespace WixToolset.Core
649 649
650 if (null == includeFile) 650 if (null == includeFile)
651 { 651 {
652 throw new WixFileNotFoundException(sourceLineNumbers, includePath, "include"); 652 throw new WixException(ErrorMessages.FileNotFound(sourceLineNumbers, includePath, "include"));
653 } 653 }
654 654
655 using (XmlReader reader = XmlReader.Create(includeFile, DocumentXmlReaderSettings)) 655 using (XmlReader reader = XmlReader.Create(includeFile, DocumentXmlReaderSettings))