AppxManifest.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Package
  3. xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
  4. xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
  5. xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities">
  6. <Identity Name="34685EliArbel.RoslynPad"
  7. ProcessorArchitecture="x64"
  8. Publisher="CN=9C7E53B6-ADB4-497A-97E5-B4B9B239B179"
  9. Version="15.1.0.0" />
  10. <Properties>
  11. <DisplayName>RoslynPad</DisplayName>
  12. <PublisherDisplayName>Eli Arbel</PublisherDisplayName>
  13. <Description>A cross-platform C# script editor &amp; runner based on Roslyn and AvalonEdit</Description>
  14. <Logo>Assets\storelogo.png</Logo>
  15. </Properties>
  16. <Resources>
  17. <Resource Language="en" />
  18. </Resources>
  19. <Dependencies>
  20. <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14316.0" MaxVersionTested="10.0.19041.0" />
  21. </Dependencies>
  22. <Capabilities>
  23. <rescap:Capability Name="runFullTrust"/>
  24. </Capabilities>
  25. <Applications>
  26. <Application Id="RoslynPad" Executable="RoslynPad.exe" EntryPoint="Windows.FullTrustApplication">
  27. <uap:VisualElements
  28. BackgroundColor="transparent"
  29. DisplayName="RoslynPad"
  30. Square150x150Logo="Assets\logo.png"
  31. Square44x44Logo="Assets\square44x44logo.png"
  32. Description="A cross-platform C# script editor &amp; runner based on Roslyn and AvalonEdit" />
  33. </Application>
  34. </Applications>
  35. </Package>