| 123456789101112131415161718192021222324252627282930313233343536 |
- <?xml version="1.0" encoding="utf-8"?>
- <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
- xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
- xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
- xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
- IgnorableNamespaces="uap uap2 mp">
- <Identity Name="HoloUrhoSharp" Publisher="CN=Egor" Version="1.0.0.0" />
- <mp:PhoneIdentity PhoneProductId="fcaf243a-e17d-4aea-ab93-4bf965b64647" PhonePublisherId="00000000-0000-0000-0000-000000000000" />
- <Properties>
- <DisplayName>HoloUrhoSharp</DisplayName>
- <PublisherDisplayName>Egor</PublisherDisplayName>
- <Logo>Assets\StoreLogo.png</Logo>
- </Properties>
- <Dependencies>
- <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.10586.0" MaxVersionTested="10.0.14393.0" />
- </Dependencies>
- <Resources>
- <Resource Language="x-generate" />
- </Resources>
- <Applications>
- <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="HoloUrhoSharp.AppView">
- <uap:VisualElements DisplayName="HoloUrhoSharp" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="HoloUrhoSharp" BackgroundColor="#464646">
- <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png">
- </uap:DefaultTile>
- <uap:SplashScreen Image="Assets\SplashScreen.png" />
- </uap:VisualElements>
- </Application>
- </Applications>
- <Capabilities>
- <uap2:Capability Name="spatialPerception" />
- <Capability Name="internetClient" />
- <uap:Capability Name="picturesLibrary" />
- <DeviceCapability Name="webcam" />
- <DeviceCapability Name="microphone" />
- </Capabilities>
- </Package>
|