From 6c1ae2593faab59e1a01c96794e0835a6fcd0626 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Fri, 25 Oct 2019 00:23:42 -0700 Subject: Implement WixOutput with support for multiple streams of data --- src/WixToolset.Data/WixUnexpectedFileFormatException.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/WixToolset.Data/WixUnexpectedFileFormatException.cs') diff --git a/src/WixToolset.Data/WixUnexpectedFileFormatException.cs b/src/WixToolset.Data/WixUnexpectedFileFormatException.cs index 340fb4d7..4bd6ba4a 100644 --- a/src/WixToolset.Data/WixUnexpectedFileFormatException.cs +++ b/src/WixToolset.Data/WixUnexpectedFileFormatException.cs @@ -9,7 +9,7 @@ namespace WixToolset.Data /// public class WixUnexpectedFileFormatException : WixException { - public WixUnexpectedFileFormatException(string path, FileFormat expectedFormat, FileFormat format, Exception innerException = null) + public WixUnexpectedFileFormatException(string path, string expectedFormat, string format, Exception innerException = null) : base(ErrorMessages.UnexpectedFileFormat(path, expectedFormat, format), innerException) { this.Path = path; @@ -20,12 +20,12 @@ namespace WixToolset.Data /// /// Gets the expected file format. /// - public FileFormat ExpectedFileFormat { get; } + public string ExpectedFileFormat { get; } /// /// Gets the actual file format found in the file. /// - public FileFormat FileFormat { get; } + public string FileFormat { get; } /// /// Gets the path to the file with unexpected format. -- cgit v1.2.3-55-g6feb