Let's see how UnshieldSharp goes

This commit is contained in:
Matt Nadareski
2025-08-29 09:14:33 -04:00
parent 6b6b7c6289
commit fa31cd0e98
6 changed files with 613 additions and 85 deletions

View File

@@ -67,7 +67,6 @@
<ItemGroup>
<PackageReference Include="SabreTools.IO" Version="1.7.0" />
<PackageReference Include="System.Text.Encoding.CodePages" Version="9.0.8" Condition="!$(TargetFramework.StartsWith(`net2`)) AND !$(TargetFramework.StartsWith(`net3`)) AND !$(TargetFramework.StartsWith(`net40`)) AND !$(TargetFramework.StartsWith(`net452`))" />
<PackageReference Include="UnshieldSharp" Version="1.9.4" />
</ItemGroup>
</Project>

View File

@@ -286,7 +286,7 @@ namespace ExtractionTool
if (!File.Exists(file))
return false;
var cabfile = UnshieldSharp.InstallShieldCabinet.Open(file);
var cabfile = UnshieldSharpInternal.InstallShieldCabinet.Open(file);
if (cabfile?.HeaderList == null)
return false;