aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Core/Bind/ResolveFieldsCommand.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/Bind/ResolveFieldsCommand.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/Bind/ResolveFieldsCommand.cs')
-rw-r--r--src/WixToolset.Core/Bind/ResolveFieldsCommand.cs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/WixToolset.Core/Bind/ResolveFieldsCommand.cs b/src/WixToolset.Core/Bind/ResolveFieldsCommand.cs
index 0d5c3142..b7ed8a18 100644
--- a/src/WixToolset.Core/Bind/ResolveFieldsCommand.cs
+++ b/src/WixToolset.Core/Bind/ResolveFieldsCommand.cs
@@ -152,10 +152,9 @@ namespace WixToolset.Core.Bind
152 } 152 }
153#endif 153#endif
154 } 154 }
155 catch (WixFileNotFoundException) 155 catch (WixException e)
156 { 156 {
157 // display the error with source line information 157 this.Messaging.Write(e.Error);
158 this.Messaging.Write(ErrorMessages.FileNotFound(row.SourceLineNumbers, objectField.Path));
159 } 158 }
160 } 159 }
161 160