package.appxManifest 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Package
  3. xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
  4. xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
  5. xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
  6. xmlns:desktop4="http://schemas.microsoft.com/appx/manifest/desktop/windows10/4"
  7. xmlns:iot2="http://schemas.microsoft.com/appx/manifest/iot/windows10/2"
  8. IgnorableNamespaces="uap mp">
  9. <Identity Name="274EF42C-A3FB-3D6C-B127-E39C508A4F0E" Publisher="CN=CMake" Version="1.0.0.0" />
  10. <mp:PhoneIdentity PhoneProductId="274EF42C-A3FB-3D6C-B127-E39C508A4F0E" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
  11. <Properties>
  12. <DisplayName>datachannel-client</DisplayName>
  13. <PublisherDisplayName>CMake</PublisherDisplayName>
  14. <Logo>StoreLogo.png</Logo>
  15. </Properties>
  16. <Dependencies>
  17. <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  18. </Dependencies>
  19. <Resources>
  20. <Resource Language="x-generate" />
  21. </Resources>
  22. <Applications>
  23. <Application
  24. Id="App"
  25. Executable="client.exe"
  26. EntryPoint="datachannel-client.App"
  27. desktop4:Subsystem="console"
  28. desktop4:SupportsMultipleInstances="true"
  29. iot2:Subsystem="console"
  30. iot2:SupportsMultipleInstances="true">
  31. <uap:VisualElements
  32. DisplayName="datachannel-client"
  33. Description="datachannel-client"
  34. BackgroundColor="#336699"
  35. Square150x150Logo="Logo.png"
  36. Square44x44Logo="SmallLogo44x44.png">
  37. <uap:SplashScreen Image="SplashScreen.png" />
  38. </uap:VisualElements>
  39. </Application>
  40. </Applications>
  41. </Package>