Add support for NuGet package files (.nupkg) which are just zip files (#903)

This commit is contained in:
Cédric Luthi
2021-05-14 19:02:38 +02:00
committed by GitHub
parent 0dd8e919ca
commit 9478f9d4d7

View File

@@ -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;