package.appxmanifest 1.5 KB

1234567891011121314151617181920212223242526272829303132333435
  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="d70a3790-48ce-4e58-af60-ebefc22e9c7a" Version="1.0.0.0" Publisher="CN=Sergei" />
  4. <Properties>
  5. <DisplayName>MediaCaptureJavaScript</DisplayName>
  6. <PublisherDisplayName>Sergei</PublisherDisplayName>
  7. <Logo>images\storelogo.png</Logo>
  8. </Properties>
  9. <Prerequisites>
  10. <OSMinVersion>6.3.0</OSMinVersion>
  11. <OSMaxVersionTested>6.3.0</OSMaxVersionTested>
  12. </Prerequisites>
  13. <Resources>
  14. <Resource Language="x-generate" />
  15. </Resources>
  16. <Applications>
  17. <Application Id="App" StartPage="default.html">
  18. <m2:VisualElements DisplayName="MediaCaptureJavaScript" Description="MediaCaptureJavaScript" ForegroundText="light" BackgroundColor="#464646" Square150x150Logo="images\Logo.png" Square30x30Logo="images\SmallLogo.png">
  19. <m2:SplashScreen Image="images\splashscreen.png" />
  20. </m2:VisualElements>
  21. </Application>
  22. </Applications>
  23. <Capabilities>
  24. <Capability Name="internetClient" />
  25. <DeviceCapability Name="webcam" />
  26. </Capabilities>
  27. <Extensions>
  28. <Extension Category="windows.activatableClass.inProcessServer">
  29. <InProcessServer>
  30. <Path>OcvTransform.dll</Path>
  31. <ActivatableClass ActivatableClassId="OcvTransform.OcvImageManipulations" ThreadingModel="both" />
  32. </InProcessServer>
  33. </Extension>
  34. </Extensions>
  35. </Package>