From f2ead15c8bbaf6ce777d7026cd8422df3628dd19 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 27 Jul 2018 00:26:30 -0700 Subject: Support displaying paths checked when file not found --- src/WixToolset.Data/ErrorMessages.cs | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src') diff --git a/src/WixToolset.Data/ErrorMessages.cs b/src/WixToolset.Data/ErrorMessages.cs index 81f67c81..a50615f3 100644 --- a/src/WixToolset.Data/ErrorMessages.cs +++ b/src/WixToolset.Data/ErrorMessages.cs @@ -3,6 +3,8 @@ namespace WixToolset.Data { using System; + using System.Collections; + using System.Collections.Generic; using System.Resources; public static class ErrorMessages @@ -647,6 +649,12 @@ namespace WixToolset.Data return Message(sourceLineNumbers, Ids.FileNotFound, "The system cannot find the file '{0}' with type '{1}'.", file, fileType); } + public static Message FileNotFound(SourceLineNumber sourceLineNumbers, string file, string fileType, IEnumerable checkedPaths) + { + var combinedCheckedPaths = String.Join(", ", checkedPaths); + return Message(sourceLineNumbers, Ids.FileNotFound, "The system cannot find the file '{0}' with type '{1}'. The following paths were checked: {2}", file, fileType, combinedCheckedPaths); + } + public static Message FileOrDirectoryPathRequired(string parameter) { return Message(null, Ids.FileOrDirectoryPathRequired, "The parameter '{0}' must be followed by a file or directory path. To specify a directory path the string must end with a backslash, for example: \"C:\\Path\\\".", parameter); -- cgit v1.2.3-55-g6feb