Hello! I am trying to upload a package to the Windows Store. However, when I upload my packages, I get this error.
Smart Team Builder_1.1.3.0_x86_x64_arm_bundle.appxupload 21.4 MB
Your package Microsoft.NET.Native.Framework.1.6 specifies version 1.6.25512.0, but 1.6.24903.0 is the minimum available version.
Your package Microsoft.NET.Native.Runtime.1.7 specifies version 1.7.25412.0, but 1.7.25304.0 is the minimum available version.
I tried to add these lines to my Package.appxmanifest
by following this question and that question, but I get the same error.
<PackageDependency Name="Microsoft.NET.Native.Framework.1.6" MinVersion="1.6.25512.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
<PackageDependency Name="Microsoft.NET.Native.Runtime.1.7" MinVersion="1.7.25412.0" Publisher="CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US" />
So... How do I fix that?