Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Package.appxmanifest 1.6 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
  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. IgnorableNamespaces="uap mp">
  7. <Identity
  8. Name="bff28790-cef7-44ea-abf8-8458067c6a01"
  9. Publisher="CN=Dave"
  10. Version="1.0.0.0" />
  11. <mp:PhoneIdentity PhoneProductId="bff28790-cef7-44ea-abf8-8458067c6a01" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
  12. <Properties>
  13. <DisplayName>WorkingWithWebview.UWP</DisplayName>
  14. <PublisherDisplayName>Dave</PublisherDisplayName>
  15. <Logo>Assets\StoreLogo.png</Logo>
  16. </Properties>
  17. <Dependencies>
  18. <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
  19. </Dependencies>
  20. <Resources>
  21. <Resource Language="x-generate"/>
  22. </Resources>
  23. <Applications>
  24. <Application Id="App"
  25. Executable="$targetnametoken$.exe"
  26. EntryPoint="WorkingWithWebview.UWP.App">
  27. <uap:VisualElements
  28. DisplayName="WorkingWithWebview.UWP"
  29. Square150x150Logo="Assets\Square150x150Logo.png"
  30. Square44x44Logo="Assets\Square44x44Logo.png"
  31. Description="WorkingWithWebview.UWP"
  32. BackgroundColor="transparent">
  33. <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
  34. <uap:SplashScreen Image="Assets\SplashScreen.png" />
  35. </uap:VisualElements>
  36. </Application>
  37. </Applications>
  38. <Capabilities>
  39. <Capability Name="internetClient" />
  40. </Capabilities>
  41. </Package>
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...