Skip to content

Commit 4d72a1b

Browse files
committed
Enable appx support
1 parent 67f78b1 commit 4d72a1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Files.Uwp/Helpers/FileExtensionHelpers.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static bool IsPowerShellFile(string fileExtensionToCheck)
4848
/// otherwise <c>false</c>.</returns>
4949
public static bool IsZipFile(string fileExtensionToCheck)
5050
{
51-
return new[] { ".zip", ".msix", ".msixbundle", ".7z", ".rar", ".tar" }
51+
return new[] { ".zip", ".msix", ".appx", ".msixbundle", ".7z", ".rar", ".tar" }
5252
.Contains(fileExtensionToCheck, StringComparer.OrdinalIgnoreCase);
5353
}
5454

0 commit comments

Comments
 (0)