You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Microsoft Store"=>id.IndexOf('_')<id.IndexOf('.')?// If the first underscore is before the period, this ID has no publisher
108
-
string.Join('_',id.ToLower().Split("\\")[1].Split("_")[0..^4]):// no publisher: remove `MSIX\`, then the standard ending _version_arch__{random id}
109
-
string.Join('_',string.Join('.',id.ToLower().Split(".")[1..]).Split("_")[0..^4]),// remove the publisher (before the first .), then the standard _version_arch__{random id}
"Microsoft Store"=>PackageId.IndexOf('_')<PackageId.IndexOf('.')?// If the first underscore is before the period, this ID has no publisher
113
+
string.Join('_',PackageId.ToLower().Split("\\")[1].Split("_")[0..^4]):// no publisher: remove `MSIX\`, then the standard ending _version_arch__{random id}
114
+
string.Join('_',string.Join('.',PackageId.ToLower().Split(".")[1..]).Split("_")[0..^4]),// remove the publisher (before the first .), then the standard _version_arch__{random id}
0 commit comments