rescap:Capability Name="runFullTrust" causes problem

  • Thread starter Thread starter Shay_w
  • Start date Start date
S

Shay_w

Guest
Hi

I use visual studio 2019 and wrote an uwp project.

Now i added a windows application packing project to the solution project.

When i open the package.appxmanifest with the xml editor

<Dependencies>
<TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.0.0" MaxVersionTested="10.0.0.0" />
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.14393.0" MaxVersionTested="10.0.14393.0" />
</Dependencies>

<Resources>
<Resource Language="x-generate"/>
</Resources>

<Applications>
<Application Id="App"
Executable="$targetnametoken$.exe"
EntryPoint="$targetentrypoint$">
<uap:VisualElements
DisplayName="timerpack"
Description="timerpack"
BackgroundColor="transparent"
Square150x150Logo="Images\Square150x150Logo.png"
Square44x44Logo="Images\Square44x44Logo.png">
<uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
<uap:SplashScreen Image="Images\SplashScreen.png" />
</uap:VisualElements>
</Application>
</Applications>

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


Why in capabilities the default is

<rescap:Capability Name="runFullTrust" />

1544501.png it causes big problem if i want to publish to microsoft store in submission properties below the support info

before i upload the msixuploadfile

at the properties below the support info

the "no :please review ...." is checked and that's ok but when

When i upload in packages the msixuploadfile then in the properties

submission below the support info

the "yes :a valid privacy url ....." is checked and it's impossible to uncheck

Thanks

Continue reading...
 
Back
Top