You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using ``Microsoft.NETCore.UniversalWindowsPlatform`` 5.2.0 will cause UWP app store submissions to fail.
42
+
Until this is resolved, add the following to "dependencies" in project.json.
43
+
44
+
.. code-block:: json
45
+
46
+
"dependencies": {
47
+
48
+
"runtime.native.System.IO.Compression": "4.1.0",
49
+
"runtime.win7.System.Private.Uri": {
50
+
"version": "4.0.1",
51
+
"exclude": "runtime"
52
+
},
53
+
"System.Private.Uri": "4.0.0"
54
+
55
+
}
56
+
57
+
See .NET Core Issues `#9711 <https://github.com/dotnet/corefx/issues/9711>`_ and `#9743 <https://github.com/dotnet/corefx/issues/9743>`_ for more information.
58
+
37
59
Depending on your version of Visual Studio, the template may have generated your project with an old version of .NET Core for UWP. EF Core requires ``Microsoft.NETCore.UniversalWindowsPlatform`` version **5.2.0** or greater.
0 commit comments