Skip to content

Commit

Permalink
Improve Microsoft Store msix package preparing
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkanovikov committed Jan 16, 2025
1 parent d37d192 commit 6fc6116
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build_starc_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ jobs:
BUILD_VERSION: ${{ env.APP_VERSION }}.0
run: |
$xml = [xml](Get-Content $env:APPXMANIFEST_PATH)
$xml.Package.Identity.ProcessorArchitecture = "x64"
$xml.Package.Identity.Version = $env:BUILD_VERSION
$xml.save($env:APPXMANIFEST_PATH)
Expand Down Expand Up @@ -236,6 +237,7 @@ jobs:
BUILD_VERSION: ${{ env.APP_VERSION }}.0
run: |
$xml = [xml](Get-Content $env:APPXMANIFEST_PATH)
$xml.Package.Identity.ProcessorArchitecture = "x86"
$xml.Package.Identity.Version = $env:BUILD_VERSION
$xml.save($env:APPXMANIFEST_PATH)
Expand Down
6 changes: 3 additions & 3 deletions build/windows/msix/AppxManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" IgnorableNamespaces="uap rescap">
<Identity Name="Starc" Publisher="CN=StoryApps" Version="" />
<Identity Name="38323StoryApps.StoryArchitectSTARC" Publisher="CN=DAE9AC5A-4388-46AC-A164-8987B1DC6DE1" Version="" ProcessorArchitecture="" />
<Properties>
<DisplayName>Starc</DisplayName>
<DisplayName>Story Arhcitect (STARC)</DisplayName>
<PublisherDisplayName>Story Apps</PublisherDisplayName>
<Logo>images\StoreLogo.png</Logo>
</Properties>
Expand All @@ -14,7 +14,7 @@
</Resources>
<Applications>
<Application Id="App" Executable="starcapp.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements DisplayName="Starc" Description="Reinventing the screenwriting software" BackgroundColor="transparent" Square150x150Logo="images\Square150x150Logo.png" Square44x44Logo="images\Square44x44Logo.png">
<uap:VisualElements DisplayName="Story Arhcitect (STARC)" Description="Reinventing the screenwriting software" BackgroundColor="transparent" Square150x150Logo="images\Square150x150Logo.png" Square44x44Logo="images\Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="images\Wide310x150Logo.png" Square71x71Logo="images\SmallTile.png" Square310x310Logo="images\LargeTile.png" />
<uap:SplashScreen Image="images\SplashScreen.png" />
</uap:VisualElements>
Expand Down

0 comments on commit 6fc6116

Please sign in to comment.