1<?xml version="1.0" encoding="utf-8"?> 2 3<Package 4 xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" 5 xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" 6 xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" 7 IgnorableNamespaces="uap mp"> 8 9 <Identity 10 Name="bb52b3e1-5c8a-4516-a5ff-8b9f9baadef7" 11 Publisher="CN=mistachkin" 12 Version="1.0.0.0" /> 13 14 <mp:PhoneIdentity PhoneProductId="bb52b3e1-5c8a-4516-a5ff-8b9f9baadef7" PhonePublisherId="00000000-0000-0000-0000-000000000000"/> 15 16 <Properties> 17 <DisplayName>vsixtest</DisplayName> 18 <PublisherDisplayName>mistachkin</PublisherDisplayName> 19 <Logo>Assets\StoreLogo.png</Logo> 20 </Properties> 21 22 <Dependencies> 23 <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" /> 24 </Dependencies> 25 26 <Resources> 27 <Resource Language="x-generate"/> 28 </Resources> 29 30 <Applications> 31 <Application Id="App" 32 Executable="$targetnametoken$.exe" 33 EntryPoint="vsixtest.App"> 34 <uap:VisualElements 35 DisplayName="vsixtest" 36 Square150x150Logo="Assets\Square150x150Logo.png" 37 Square44x44Logo="Assets\Square44x44Logo.png" 38 Description="vsixtest" 39 BackgroundColor="transparent"> 40 <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/> 41 <uap:SplashScreen Image="Assets\SplashScreen.png" /> 42 </uap:VisualElements> 43 </Application> 44 </Applications> 45 46 <Capabilities> 47 <Capability Name="internetClient" /> 48 </Capabilities> 49</Package>