Skip to content

Commit 4c737eb

Browse files
committed
AppxManifest fixes to make the store happy
1 parent 0bd6f0e commit 4c737eb

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

src/AppxManifest-Sideload.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
IgnorableNamespaces="uap rescap desktop">
88

99
<!-- For sideloading, the Publisher here must match our code signing certificate. -->
10+
<!-- For sideloading, we already published under the id BrianLuft.Jackpot, so let's keep it for existing users
11+
even though our Microsoft Store id is different. -->
1012
<Identity
1113
Name="BrianLuft.Jackpot"
1214
Publisher="CN=Brian Luft, O=Brian Luft, S=&quot;Virgin Islands, U.S.&quot;, C=US"
@@ -36,7 +38,7 @@
3638
Executable="Jackpot.exe"
3739
EntryPoint="Windows.FullTrustApplication">
3840
<uap:VisualElements
39-
DisplayName="Jackpot"
41+
DisplayName="Jackpot Media Library"
4042
Description="Personal cloud media library"
4143
BackgroundColor="transparent"
4244
Square150x150Logo="assets\App150x150.png"

src/AppxManifest-Store.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,17 @@
66
xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
77
IgnorableNamespaces="uap rescap desktop">
88

9+
<!-- For the store, we must use the app id they assign us. -->
10+
<!-- For the store, the CN here must match our Microsoft developer account. -->
911
<Identity
10-
Name="BrianLuft.Jackpot"
11-
Publisher="CN=Brian Luft, O=Brian Luft, S=&quot;Virgin Islands, U.S.&quot;, C=US"
12+
Name="BrianR.Luft.JackpotMediaLibrary"
13+
Publisher="CN=Brian R. Luft"
1214
Version="1.0.0.0"
1315
ProcessorArchitecture="(ARCH)" />
1416

1517
<Properties>
16-
<DisplayName>Jackpot</DisplayName>
18+
<!-- For the store, the DisplayName must match the app name we reserved. -->
19+
<DisplayName>Jackpot Media Library</DisplayName>
1720
<!-- For the store, the PublisherDisplayName here must match our Microsoft developer account. -->
1821
<PublisherDisplayName>Brian R. Luft</PublisherDisplayName>
1922
<Logo>assets\App.png</Logo>
@@ -32,11 +35,11 @@
3235

3336
<Applications>
3437
<Application
35-
Id="BrianLuft.Jackpot"
38+
Id="BrianR.Luft.JackpotMediaLibrary"
3639
Executable="Jackpot.exe"
3740
EntryPoint="Windows.FullTrustApplication">
3841
<uap:VisualElements
39-
DisplayName="Jackpot"
42+
DisplayName="Jackpot Media Library"
4043
Description="Personal cloud media library"
4144
BackgroundColor="transparent"
4245
Square150x150Logo="assets\App150x150.png"

0 commit comments

Comments
 (0)