1

I get the following error when I try to build my UWP C# app after I added...

<rescap:Capability Name="broadFileSystemAccess" />

...the manifest to support broadFileSystemAccess.

Manifest ……………………………….. enter image description here

Popup error hovering mouse over horizontal blue squiggle line... enter image description here

Error when Mouse hovering over ...

"The element Capabilities in namespace 'http://schemas...has invalid child element 'Capability' in namespace..."

Build error...

Validation error. error C00CE014: App manifest validation error: The app manifest must be valid as per schema: Line 40, Column 6, Reason: Element '{http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities}Capability' is unexpected according to content model of parent element '{http://schemas.microsoft.com/appx/manifest/foundation/windows10}Capabilities'. Expecting: {http://schemas.microsoft.com/appx/manifest/foundation/windows10}DeviceCapability.

Doug Null
  • 7,989
  • 15
  • 69
  • 148

1 Answers1

0

Following Hans Passant's suggestion, that fixed it. specifically, I changed
IgnorableNamespaces="uap mp rescap"

to
IgnorableNamespaces="uap mp"

Doug Null
  • 7,989
  • 15
  • 69
  • 148