From a2bf15f0bc706954a38cf9024b206a39a3202cfd Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Tue, 29 Jul 2025 11:49:07 -0400 Subject: [PATCH] Fix method ordering --- .../Wrappers/MicrosoftCabinet.cs | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/SabreTools.Serialization/Wrappers/MicrosoftCabinet.cs b/SabreTools.Serialization/Wrappers/MicrosoftCabinet.cs index d49f79c0..5e8a0cc6 100644 --- a/SabreTools.Serialization/Wrappers/MicrosoftCabinet.cs +++ b/SabreTools.Serialization/Wrappers/MicrosoftCabinet.cs @@ -112,6 +112,17 @@ namespace SabreTools.Serialization.Wrappers #region Extraction + /// + /// Extract a cabinet set to an output directory, if possible + /// + /// Filename for one cabinet in the set + /// Path to the output directory + /// True to include debug data, false otherwise + /// Indicates if all files were able to be extracted + /// Will extract all items found in the set + public static bool ExtractSet(string filename, string outDir, bool includeDebug) + => ExtractSet(stream: null, filename, outDir, includeDebug); + /// /// Extract a cabinet set to an output directory, if possible /// @@ -153,17 +164,6 @@ namespace SabreTools.Serialization.Wrappers return true; } - /// - /// Extract a cabinet set to an output directory, if possible - /// - /// Filename for one cabinet in the set - /// Path to the output directory - /// True to include debug data, false otherwise - /// Indicates if all files were able to be extracted - /// Will extract all items found in the set - public static bool ExtractSet(string filename, string outDir, bool includeDebug) - => ExtractSet(stream: null, filename, outDir, includeDebug); - /// /// Extract a cabinet to an output directory, if possible ///