diff --git a/BurnOutSharp/PackerType/IntelInstallationFramework.cs b/BurnOutSharp/PackerType/IntelInstallationFramework.cs index 3c1fb4b7..2f7803ac 100644 --- a/BurnOutSharp/PackerType/IntelInstallationFramework.cs +++ b/BurnOutSharp/PackerType/IntelInstallationFramework.cs @@ -8,6 +8,7 @@ namespace BurnOutSharp.PackerType /// public string CheckContents(string file, byte[] fileContent, bool includePosition = false) { + // TODO: Add byte-based checks for these as well for when we're working on stream alone var fvinfo = Utilities.GetFileVersionInfo(file); string name = fvinfo?.FileDescription.Trim(); diff --git a/BurnOutSharp/PackerType/MicrosoftCABSFX.cs b/BurnOutSharp/PackerType/MicrosoftCABSFX.cs index ee376a38..06f1f75c 100644 --- a/BurnOutSharp/PackerType/MicrosoftCABSFX.cs +++ b/BurnOutSharp/PackerType/MicrosoftCABSFX.cs @@ -13,6 +13,7 @@ namespace BurnOutSharp.PackerType /// public string CheckContents(string file, byte[] fileContent, bool includePosition = false) { + // TODO: Add byte-based checks for these as well for when we're working on stream alone var fvinfo = Utilities.GetFileVersionInfo(file); string name = fvinfo?.InternalName.Trim();