appxmanifest.xml 5.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <Package
  2. xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
  3. xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
  4. xmlns:uap2="http://schemas.microsoft.com/appx/manifest/uap/windows10/2"
  5. xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
  6. xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
  7. xmlns:desktop="http://schemas.microsoft.com/appx/manifest/desktop/windows10"
  8. xmlns:desktop2="http://schemas.microsoft.com/appx/manifest/desktop/windows10/2"
  9. IgnorableNamespaces="desktop2">
  10. <Identity Name="60145ScottBrogden.ditto-cp"
  11. ProcessorArchitecture="x86"
  12. Publisher="CN=2032816C-0EBD-4FA0-8832-B8289B21D4F4"
  13. Version="%version%" />
  14. <Properties>
  15. <DisplayName>Ditto Clipboard</DisplayName>
  16. <PublisherDisplayName>Scott Brogden</PublisherDisplayName>
  17. <Description>Ditto</Description>
  18. <Logo>Ditto.png</Logo>
  19. </Properties>
  20. <Resources>
  21. <Resource Language="en-us" />
  22. </Resources>
  23. <Dependencies>
  24. <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.14316.0" />
  25. </Dependencies>
  26. <Capabilities>
  27. <rescap:Capability Name="runFullTrust"/>
  28. </Capabilities>
  29. <Applications>
  30. <Application Id="Ditto" Executable="Ditto.exe" EntryPoint="Windows.FullTrustApplication">
  31. <uap:VisualElements
  32. BackgroundColor="#ffffff"
  33. DisplayName="Ditto"
  34. Square150x150Logo="Ditto_150.png"
  35. Square44x44Logo="Ditto_44.png"
  36. Description="Ditto" />
  37. <Extensions>
  38. <desktop:Extension Category="windows.startupTask" Executable="Ditto.exe" EntryPoint="Windows.FullTrustApplication">
  39. <desktop:StartupTask TaskId="DittoStartupTask" Enabled="true" DisplayName="Ditto Service" />
  40. </desktop:Extension>
  41. <desktop2:Extension Category="windows.firewallRules">
  42. <desktop2:FirewallRules Executable="Ditto.exe">
  43. <desktop2:Rule Direction="in" IPProtocol="TCP" LocalPortMin="23443" LocalPortMax="23443" RemotePortMin="23443" RemotePortMax="23443" Profile="domainAndPrivate"/>
  44. <desktop2:Rule Direction="out" IPProtocol="TCP" LocalPortMin="23443" LocalPortMax="23443" RemotePortMin="23443" RemotePortMax="23443" Profile="domainAndPrivate"/>
  45. </desktop2:FirewallRules>
  46. </desktop2:Extension>
  47. <uap:Extension Category="windows.fileTypeAssociation">
  48. <uap3:FileTypeAssociation Name="alsdkja">
  49. <uap:SupportedFileTypes>
  50. <uap:FileType>.dto</uap:FileType>
  51. </uap:SupportedFileTypes>
  52. </uap3:FileTypeAssociation>
  53. </uap:Extension>
  54. </Extensions>
  55. </Application>
  56. </Applications>
  57. </Package>