Skip to content

Commit

Permalink
appxmanifest: update
Browse files Browse the repository at this point in the history
  • Loading branch information
meee1 committed Sep 15, 2016
1 parent 48f35ad commit e66d291
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 14 deletions.
23 changes: 12 additions & 11 deletions appxmanifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
<Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2" xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3" xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities" xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10">
<Identity Name="36541MichaelOborne.MissionPlanner"
Version="1.3.39.0"
Publisher="CN=3B1842DF-8664-4A02-B840-61F61DA8A94E" />
Expand All @@ -8,20 +8,21 @@
<PublisherDisplayName>Michael Oborne</PublisherDisplayName>
<Logo>splashdark.jpg</Logo>
</Properties>
<Prerequisites>
<OSMinVersion>6.2.1</OSMinVersion>
<OSMaxVersionTested>6.2.1</OSMaxVersionTested>
</Prerequisites>
<Resources>
<Resource Language="en-us" />
</Resources>
<Dependencies>
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" />
</Dependencies>
<Capabilities>
<rescap:Capability Name="runFullTrust" />
</Capabilities>
<Applications>
<Application Id="MPApp" Executable="MissionPlanner.exe" EntryPoint="MissionPlanner.Program">
<VisualElements DisplayName="Mission Planner" Description="ArduPilot ground control station"
Logo="splashdark.jpg" SmallLogo="splashdark.jpg"
ForegroundText="dark" BackgroundColor="#FFFFFF">
<SplashScreen Image="splashdark.jpg" />
</VisualElements>
<Application Id="MissionPlanner" Executable="MissionPlanner.exe" EntryPoint="Windows.FullTrustApplication">
<uap:VisualElements DisplayName="Mission Planner" Description="ArduPilot ground control station"
Square150x150Logo="splashdark.jpg" Square44x44Logo="splashdark.jpg"
BackgroundColor="#FFFFFF" />
<Extensions />
</Application>
</Applications>
</Package>
10 changes: 7 additions & 3 deletions build.bat
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@

"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" MissionPlanner.sln /m /p:Configuration=Release


rem DesktopAppConverter.exe -installer MissionPlanner-1.3.39.msi -destination f:\temp\appx -packagename "MissionPlanner" -publisher "CN=3B1842DF-8664-4A02-B840-61F61DA8A94E" -Version 1.3.39.0 -makeappx -Verbose

rem "C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" MissionPlanner.sln /m /p:Configuration=Release /p:TargetFrameworkVersion=v4.6 /p:OutputPath=bin\4.6

rem "C:\Program Files (x86)\Windows Kits\10\bin\x86\makeappx" pack /d bin\4.6 /p MissionPlanner.appx
"C:\Program Files (x86)\Windows Kits\10\bin\x86\makeappx" pack /d bin\release /p MissionPlanner.appx

rem "C:\Program Files (x86)\Windows Kits\10\bin\x86\signtool" sign /a /v /fd SHA256 /t http://timestamp.verisign.com/scripts/timestamp.dll /n "3B1842DF-8664-4A02-B840-61F61DA8A94E" MissionPlanner.appx
"C:\Program Files (x86)\Windows Kits\10\bin\x86\signtool" sign /a /v /fd SHA256 /t http://timestamp.verisign.com/scripts/timestamp.dll /n "3B1842DF-8664-4A02-B840-61F61DA8A94E" MissionPlanner.appx


"C:\Program Files (x86)\MSBuild\14.0\Bin\MSBuild.exe" MissionPlanner.sln /m /p:Configuration=Release

pause

0 comments on commit e66d291

Please sign in to comment.