Skip to content

Commit

Permalink
Fix missing rescap locally for now for SizerBase
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-hawker committed Jul 22, 2022
1 parent cd317f8 commit 7baa9ea
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
8 changes: 5 additions & 3 deletions labs/SizerBase/tests/SizerBase.Tests.Uwp/Package.appxmanifest
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<?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">
xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
IgnorableNamespaces="uap mp rescap">

<Identity Name="Labs.SizerBase.Tests.Uwp"
Publisher="CN=CommunityToolkit"
Expand Down Expand Up @@ -41,5 +42,6 @@
<Capabilities>
<Capability Name="internetClientServer" />
<Capability Name="privateNetworkClientServer" />
<rescap:Capability Name="inputInjectionBrokered" />
</Capabilities>
</Package>
</Package>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>

<Package
xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
Expand Down Expand Up @@ -43,5 +43,6 @@

<Capabilities>
<rescap:Capability Name="runFullTrust" />
<rescap:Capability Name="inputInjectionBrokered" />
</Capabilities>
</Package>

0 comments on commit 7baa9ea

Please sign in to comment.