StoreManifest XML example

Here's an example of a StoreManifest XML file for a UWP package.

This XML declares the app as a Microsoft Store device app that is tied to a single device experience. It also declares the minimum memory and DirectX level necessary to install the app on a device.

<?xml version="1.0" encoding="utf-8"?>
<StoreManifest xmlns="http://schemas.microsoft.com/appx/2015/StoreManifest">
  <DeviceCompanionApplication>
    <ExperienceId>258E1783-155C-4577-9077-DBF6A4B71A01</ExperienceId>
  </DeviceCompanionApplication>
  <Dependencies>
    <MemoryDependency MinForeground="750MB" />
    <DirectXDependency Name="D3D12_HWFL_11_0" />
  </Dependencies>
</StoreManifest>