Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
aliakseis committed Oct 13, 2024
1 parent c6f7a8b commit f43cf87
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/msbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
$MakeAppx_path = Get-ChildItem -Path "C:/Program Files (x86)/Windows Kits/10/bin/*/x64/MakeAppx.exe" | Select-Object -First 1 -ExpandProperty FullName
Write-Output "MakeAppx path=$MakeAppx_path"
mkdir -p ./x64/Release/Appx
cp ./AppxManifest.xml ./x64/Release/Appx/
& "$MakeAppx_path" pack /d ./x64/Release /p ./x64/Release/Appx/WellTrajectoryCalculator.msix
shell: pwsh

Expand Down
24 changes: 24 additions & 0 deletions AppxManifest.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
IgnorableNamespaces="uap mp">
<Identity Name="Contoso.MyApp" Publisher="CN=01234567-89ab-cdef-0123-456789abcdef" Version="1.0.0.0" />
<Properties>
<DisplayName>My App</DisplayName>
<PublisherDisplayName>Contoso, Inc.</PublisherDisplayName>
<Description>A simple app for Windows</Description>
<Logo>Assets\Logo.png</Logo>
</Properties>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.19042.0" />
</Dependencies>
<Resources>
<Resource Language="en-us" />
</Resources>
<Applications>
<Application Id="App" Executable="WellTrajectoryCalculator.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements DisplayName="My App" Description="A simple app for Windows" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" />
</Application>
</Applications>
</Package>

0 comments on commit f43cf87

Please sign in to comment.