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/WixCorruptFileException.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/WixToolset.Data/WixCorruptFileException.cs') diff --git a/src/WixToolset.Data/WixCorruptFileException.cs b/src/WixToolset.Data/WixCorruptFileException.cs index f77f0d8a..83c3eb80 100644 --- a/src/WixToolset.Data/WixCorruptFileException.cs +++ b/src/WixToolset.Data/WixCorruptFileException.cs @@ -9,7 +9,7 @@ namespace WixToolset.Data /// public class WixCorruptFileException : WixException { - public WixCorruptFileException(string path, FileFormat format, Exception innerException = null) + public WixCorruptFileException(string path, string format, Exception innerException = null) : base(ErrorMessages.CorruptFileFormat(path, format), innerException) { this.Path = path; @@ -19,7 +19,7 @@ namespace WixToolset.Data /// /// 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