summaryrefslogtreecommitdiff
path: root/winRT/winapp/Package.appxmanifest
diff options
context:
space:
mode:
authorMichael Vrhel <michael.vrhel@artifex.com>2013-03-01 13:43:29 -0800
committerRobin Watts <robin.watts@artifex.com>2013-05-16 19:25:22 +0100
commitf922e4799b1ead5f764a0d8b4336880960a11353 (patch)
tree7f642d703f029b0cd28e8b50a3832a2243013b2d /winRT/winapp/Package.appxmanifest
parentd7a79bb7a88abfca9b1e0bc79703951f5a1e4bc5 (diff)
downloadmupdf-f922e4799b1ead5f764a0d8b4336880960a11353.tar.xz
Initial commit of windowsRT viewer code.
Lots of issues to resolve still and plenty of requirements to do but it is a start.
Diffstat (limited to 'winRT/winapp/Package.appxmanifest')
-rw-r--r--winRT/winapp/Package.appxmanifest46
1 files changed, 46 insertions, 0 deletions
diff --git a/winRT/winapp/Package.appxmanifest b/winRT/winapp/Package.appxmanifest
new file mode 100644
index 00000000..36a26c27
--- /dev/null
+++ b/winRT/winapp/Package.appxmanifest
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
+ <Identity Name="d9462f36-8b87-4b46-897a-66f6c91774ec" Publisher="CN=michaelv" Version="1.0.0.0" />
+ <Properties>
+ <DisplayName>winapp</DisplayName>
+ <PublisherDisplayName>michaelv</PublisherDisplayName>
+ <Logo>Assets\mupdf_storelogo.png</Logo>
+ </Properties>
+ <Prerequisites>
+ <OSMinVersion>6.2.1</OSMinVersion>
+ <OSMaxVersionTested>6.2.1</OSMaxVersionTested>
+ </Prerequisites>
+ <Resources>
+ <Resource Language="x-generate" />
+ </Resources>
+ <Applications>
+ <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="winapp.App">
+ <VisualElements DisplayName="winapp" Logo="Assets\mupdf_logo.png" SmallLogo="Assets\mupdf_smallogo.png" Description="winapp" ForegroundText="light" BackgroundColor="#464646">
+ <DefaultTile ShowName="allLogos" />
+ <SplashScreen Image="Assets\mupdf_splash.png" />
+ </VisualElements>
+ <Extensions>
+ <Extension Category="windows.fileOpenPicker">
+ <FileOpenPicker>
+ <SupportedFileTypes>
+ <FileType>.pdf</FileType>
+ <FileType>.xps</FileType>
+ <FileType>.oxps</FileType>
+ </SupportedFileTypes>
+ </FileOpenPicker>
+ </Extension>
+ <Extension Category="windows.fileTypeAssociation">
+ <FileTypeAssociation Name=".pdf">
+ <SupportedFileTypes>
+ <FileType>.pdf</FileType>
+ </SupportedFileTypes>
+ </FileTypeAssociation>
+ </Extension>
+ </Extensions>
+ </Application>
+ </Applications>
+ <Capabilities>
+ <Capability Name="documentsLibrary" />
+ <Capability Name="internetClient" />
+ </Capabilities>
+</Package> \ No newline at end of file