Skip to content

Commit 77609c0

Browse files
committed
fix: missing zeroGuid
1 parent dbff762 commit 77609c0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/services/windows-project-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,6 +615,7 @@ export class WindowsProjectService
615615
const regenGuid = !!(this.$options && (this.$options as any).regenGuid);
616616
const noAutoGuid = !!(this.$options && (this.$options as any).noAutoGuid);
617617
const allowZeroGuid = !!(this.$options && (this.$options as any).allowZeroGuid);
618+
const zeroGuid = "00000000-0000-0000-0000-000000000000";
618619

619620
let modified = manifestContent;
620621
const phoneIdentityRegex = /<mp:PhoneIdentity\b([^>]*)\/>/i;
@@ -702,7 +703,6 @@ export class WindowsProjectService
702703
this.interpolateConfigurationFile(projectData);
703704
return;
704705
}
705-
const zeroGuid = "00000000-0000-0000-0000-000000000000";
706706
const appIdentifier = projectData && projectData.projectIdentifiers && projectData.projectIdentifiers["windows"] ? projectData.projectIdentifiers["windows"] : projectData.projectId;
707707
const chosenProd = phoneProductIdArg || (allowZeroGuid ? zeroGuid : (noAutoGuid ? null : (appIdentifier ? generateDeterministicGuidFromString(appIdentifier) : generateGuid())));
708708
const chosenPub = phonePublisherIdArg || "00000000-0000-0000-0000-000000000000";

0 commit comments

Comments
 (0)