Skip to content

Commit

Permalink
Add support for NuGet package files (.nupkg) which are just zip files (
Browse files Browse the repository at this point in the history
  • Loading branch information
0xced authored May 14, 2021
1 parent 0dd8e91 commit 9478f9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion QuickLook.Plugin/QuickLook.Plugin.ArchiveViewer/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ namespace QuickLook.Plugin.ArchiveViewer
public class Plugin : IViewer
{
private static readonly string[] Extensions =
{".rar", ".zip", ".tar", ".tgz", ".gz", ".bz2", ".lz", ".xz", ".7z", ".jar", ".crx"};
{".rar", ".zip", ".tar", ".tgz", ".gz", ".bz2", ".lz", ".xz", ".7z", ".jar", ".crx", ".nupkg"};

private ArchiveInfoPanel _panel;

Expand Down

0 comments on commit 9478f9d

Please sign in to comment.