We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 97ba9cb + 6975e36 commit 4562008Copy full SHA for 4562008
src/AzureSign.Core/SipExtensionFactory.cs
@@ -30,6 +30,22 @@ public static SipKind GetSipKind(ReadOnlySpan<char> filePath)
30
{
31
return SipKind.Appx;
32
}
33
+ if (extension.Equals(".msix", StringComparison.OrdinalIgnoreCase))
34
+ {
35
+ return SipKind.Appx;
36
+ }
37
+ if (extension.Equals(".emsix", StringComparison.OrdinalIgnoreCase))
38
39
40
41
+ if (extension.Equals(".msixbundle", StringComparison.OrdinalIgnoreCase))
42
43
44
45
+ if (extension.Equals(".emsixbundle", StringComparison.OrdinalIgnoreCase))
46
47
48
49
return SipKind.None;
50
51
0 commit comments