Fill out SharpCompress archive file ext. list, adding .tar

SharpCompress claims to support .tar.bz2, .tar.gz, and .tar.lz, but I couldn't
get them to work. Left them in for later
This commit is contained in:
YoshiRulz 2021-01-21 23:05:07 +10:00
parent 0f21944755
commit acc187008f
No known key found for this signature in database
GPG Key ID: C4DE31C245353FB7
1 changed files with 11 additions and 1 deletions

View File

@ -53,6 +53,16 @@ namespace BizHawk.Client.Common
public static readonly SharpCompressDearchivalMethod Instance = new();
public IReadOnlyCollection<string> AllowedArchiveExtensions { get; } = new[] { ".zip", ".7z", ".rar", ".gz" }; // don't try any .tar.* formats, they don't work
public IReadOnlyCollection<string> AllowedArchiveExtensions { get; } = new[]
{
".7z",
".gz",
".rar",
".tar",
// /*.tar*/".bz2", ".tb2", ".tbz", ".tbz2", ".tz2",
// /*.tar.gz,*/ ".taz", ".tgz",
// /*.tar*/".lz",
".zip",
};
}
}