Package.appxmanifest 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Package xmlns="http://schemas.microsoft.com/appx/2010/manifest" xmlns:m2="http://schemas.microsoft.com/appx/2013/manifest">
  3. <Identity Name="19ff96f1-8379-4e14-8b9d-04648b3b36a9"
  4. Publisher="CN=Microsoft"
  5. Version="1.0.0.0" />
  6. <Properties>
  7. <DisplayName>VSXaml</DisplayName>
  8. <PublisherDisplayName>Microsoft</PublisherDisplayName>
  9. <Logo>Assets\StoreLogo.png</Logo>
  10. </Properties>
  11. <Prerequisites>
  12. <OSMinVersion>6.3.0</OSMinVersion>
  13. <OSMaxVersionTested>6.3.0</OSMaxVersionTested>
  14. </Prerequisites>
  15. <Resources>
  16. <Resource Language="x-generate"/>
  17. </Resources>
  18. <Applications>
  19. <Application Id="App"
  20. Executable="$targetnametoken$.exe"
  21. EntryPoint="VSXaml.App">
  22. <m2:VisualElements
  23. DisplayName="VSXaml"
  24. Square150x150Logo="Assets\Logo.png"
  25. Square30x30Logo="Assets\SmallLogo.png"
  26. Description="VSXaml"
  27. ForegroundText="light"
  28. BackgroundColor="#464646">
  29. <m2:SplashScreen Image="Assets\SplashScreen.png" />
  30. </m2:VisualElements>
  31. </Application>
  32. </Applications>
  33. <Capabilities>
  34. <Capability Name="internetClient" />
  35. </Capabilities>
  36. </Package>