Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ArchiveExtractor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public static void ExtractArchive(string archivePath, string outputDir)
// Try SharpCompress for common archive formats
try
{
using var archive = ArchiveFactory.Open(archivePath);
using var archive = ArchiveFactory.OpenArchive(archivePath);
var options = new ExtractionOptions { ExtractFullPath = true, Overwrite = true };
foreach (var entry in archive.Entries.Where(e => !e.IsDirectory))
{
Expand Down
2 changes: 1 addition & 1 deletion ProcessorEmulator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="SharpCompress" Version="0.29.0" />
<PackageReference Include="SharpCompress" Version="0.48.0" />
<PackageReference Include="System.Management" Version="8.0.0" />
</ItemGroup>

Expand Down
Loading