Skip to content

Commit

Permalink
Try a different PublisherDisplayName for store publication
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Aug 20, 2024
1 parent 71de8da commit 9ef177c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
12 changes: 10 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,16 @@ binjulialauncher = []
winpkgidentityext = []

[package.metadata.msix]
winstoremsix = { file = "deploy/msix/PackagingLayout.xml", variables = [{name = "FlatBundle", value="false"}, {name = "IdentityPublisher", value = "CN=7FB784C5-4411-4067-914E-A7B06CC00FFC"}] }
winappinstallermsix = { file = "deploy/msix/PackagingLayout.xml", variables = [{name = "FlatBundle", value="true"}, {name = "IdentityPublisher", value = "CN="JuliaHub, Inc.", O="JuliaHub, Inc.", L=CAMBRIDGE, S=Massachusetts, C=US"}] }
winstoremsix = { file = "deploy/msix/PackagingLayout.xml", variables = [
{name = "FlatBundle", value="false"},
{name = "PublisherDisplayName", value="Julia Computing, Inc."},
{name = "IdentityPublisher", value = "CN=7FB784C5-4411-4067-914E-A7B06CC00FFC"}
] }
winappinstallermsix = { file = "deploy/msix/PackagingLayout.xml", variables = [
{name = "FlatBundle", value="true"},
{name = "PublisherDisplayName", value="JuliaHub, Inc."},
{name = "IdentityPublisher", value = "CN="JuliaHub, Inc.", O="JuliaHub, Inc.", L=CAMBRIDGE, S=Massachusetts, C=US"}
] }

[package.metadata.winappinstaller]
winappinstaller = "deploy/winappinstaller/Julia.appinstaller"
Expand Down
2 changes: 1 addition & 1 deletion deploy/msix/appxmanifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<Properties>
<DisplayName>Julia</DisplayName>
<PublisherDisplayName>JuliaHub, Inc.</PublisherDisplayName>
<PublisherDisplayName>{{{PublisherDisplayName}}}</PublisherDisplayName>
<Logo>Images\StoreLogo.png</Logo>
<desktop6:FileSystemWriteVirtualization>disabled</desktop6:FileSystemWriteVirtualization>
<desktop6:RegistryWriteVirtualization>disabled</desktop6:RegistryWriteVirtualization>
Expand Down

0 comments on commit 9ef177c

Please sign in to comment.