From 3278420d72c2e4d77a08621276f51b0fe234d315 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 27 Dec 2022 16:56:00 -0800 Subject: [PATCH] Create placeholder for IS-CAB info printing --- Test/Program.cs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/Test/Program.cs b/Test/Program.cs index 03246e37..e11a2957 100644 --- a/Test/Program.cs +++ b/Test/Program.cs @@ -354,6 +354,25 @@ namespace Test gcf.Print(); } + // // IS-CAB archive + // else if (ft == SupportedFileType.InstallShieldCAB) + // { + // // Build the cabinet information + // Console.WriteLine("Creating IS-CAB deserializer"); + // Console.WriteLine(); + + // var cabinet = BurnOutSharp.Builders.InstallShieldCabinet.ParseCabinet(stream); + // if (cabinet == null) + // { + // Console.WriteLine("Something went wrong parsing IS-CAB archive"); + // Console.WriteLine(); + // return; + // } + + // // Print the cabinet info to screen + // cabinet.Print(); + // } + // MoPaQ (MPQ) archive else if (ft == SupportedFileType.MPQ) {