diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 48a6c11..26df8fa 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ on: version: description: 'Build & package version' required: true - default: 0.2.1 + default: 0.2.2 type: string jobs: Build: diff --git a/MsiZapEx/ProductInfo.cs b/MsiZapEx/ProductInfo.cs index ac625e6..853b254 100644 --- a/MsiZapEx/ProductInfo.cs +++ b/MsiZapEx/ProductInfo.cs @@ -284,7 +284,7 @@ private void Read(string obfuscatedGuid, bool? machineScope) if (!string.IsNullOrEmpty(f) && !f.Equals("@")) { string v = k.GetValue(f) as string; - if ((v != null) && ((v.Length == 0) || char.IsLetter(v[0]))) + if ((v != null) && ((v.Length == 0) || char.IsLetter(v[0]) || v[0].Equals('_'))) { Features.Add(f); }