mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +02:00
* Added Tests and Refactored code * removed un-used file * delete test files when test completes * removed extra build configs * added clean-up method * removed unused variable * re-added removed attributtion * added error handling and move strings to string resource * added error handling to file explorer view model * moved varible assignment to if statement block * removed savin of settings file from the UI * re-added open source notice * added missing controls for powerrename and fancy zones * removed dead coded * remove un-used configuration * added error handling for file saving and updated powerreanme constructor * removed added configurations * added settings state
46 lines
1.7 KiB
XML
46 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Package
|
|
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
|
|
xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest"
|
|
xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
|
|
IgnorableNamespaces="uap mp">
|
|
|
|
<Identity Name="08e1807b-8b6d-4bfa-adc4-79c64aae8e78"
|
|
Publisher="CN=lamotile"
|
|
Version="1.0.0.0" />
|
|
|
|
<mp:PhoneIdentity PhoneProductId="08e1807b-8b6d-4bfa-adc4-79c64aae8e78" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
|
|
|
|
<Properties>
|
|
<DisplayName>Microsoft.PowerToys.Settings.UnitTest</DisplayName>
|
|
<PublisherDisplayName>lamotile</PublisherDisplayName>
|
|
<Logo>Assets\StoreLogo.png</Logo>
|
|
</Properties>
|
|
|
|
<Dependencies>
|
|
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
|
|
</Dependencies>
|
|
|
|
<Resources>
|
|
<Resource Language="x-generate" />
|
|
</Resources>
|
|
<Applications>
|
|
<Application Id="vstest.executionengine.universal.App"
|
|
Executable="$targetnametoken$.exe"
|
|
EntryPoint="Microsoft.PowerToys.Settings.UnitTest.App">
|
|
<uap:VisualElements
|
|
DisplayName="Microsoft.PowerToys.Settings.UnitTest"
|
|
Square150x150Logo="Assets\Square150x150Logo.png"
|
|
Square44x44Logo="Assets\Square44x44Logo.png"
|
|
Description="Microsoft.PowerToys.Settings.UnitTest"
|
|
BackgroundColor="transparent">
|
|
<uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png"/>
|
|
<uap:SplashScreen Image="Assets\SplashScreen.png" />
|
|
</uap:VisualElements>
|
|
</Application>
|
|
</Applications>
|
|
<Capabilities>
|
|
<Capability Name="internetClientServer" />
|
|
<Capability Name="privateNetworkClientServer" />
|
|
</Capabilities>
|
|
</Package> |