Package_vc11.wp.appxmanifest.in 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Deployment xmlns="http://schemas.microsoft.com/windowsphone/2012/deployment" AppPlatformVersion="8.0">
  3. <DefaultLanguage xmlns="" code="en-US"/>
  4. <App xmlns="" ProductID="{@PACKAGE_GUID@}" Title="@SHORT_NAME@" RuntimeType="Modern Native" Version="1.0.0.0" Genre="apps.normal" Author="mgong" Description="Simple Direct3D application" Publisher="@SHORT_NAME@" PublisherID="{c618991e-1d39-41c2-a881-d3310705a091}">
  5. <IconPath IsRelative="true" IsResource="false">ApplicationIcon.png</IconPath>
  6. <Capabilities>
  7. <Capability Name="ID_CAP_NETWORKING" />
  8. <Capability Name="ID_CAP_MEDIALIB_AUDIO" />
  9. <Capability Name="ID_CAP_MEDIALIB_PLAYBACK" />
  10. </Capabilities>
  11. <Tasks>
  12. <DefaultTask Name="_default" ImagePath="@SHORT_NAME@.exe" ImageParams="" />
  13. </Tasks>
  14. <Tokens>
  15. <PrimaryToken TokenID="@SHORT_NAME@Token" TaskName="_default">
  16. <TemplateFlip>
  17. <SmallImageURI IsRelative="true" IsResource="false">FlipCycleTileSmall.png</SmallImageURI>
  18. <Count>0</Count>
  19. <BackgroundImageURI IsRelative="true" IsResource="false">FlipCycleTileMedium.png</BackgroundImageURI>
  20. <Title>@SHORT_NAME@</Title>
  21. <BackContent></BackContent>
  22. <BackBackgroundImageURI></BackBackgroundImageURI>
  23. <BackTitle></BackTitle>
  24. <DeviceLockImageURI></DeviceLockImageURI>
  25. <HasLarge></HasLarge>
  26. </TemplateFlip>
  27. </PrimaryToken>
  28. </Tokens>
  29. <ScreenResolutions>
  30. <ScreenResolution Name="ID_RESOLUTION_WVGA" />
  31. <ScreenResolution Name="ID_RESOLUTION_WXGA" />
  32. <ScreenResolution Name="ID_RESOLUTION_HD720P" />
  33. </ScreenResolutions>
  34. </App>
  35. </Deployment>