Skip to content

Commit 3320d98

Browse files
author
Nate McMaster
committed
Add workaround to getting started guide for UWP issues
1 parent ec92708 commit 3320d98

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

Diff for: docs/platforms/uwp/getting-started.rst

+22
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,28 @@ Create a new project
3434
Upgrade Microsoft.NETCore.UniversalWindowsPlatform
3535
--------------------------------------------------
3636

37+
.. warning::
38+
39+
**Known Issues with UWP 5.2.0**
40+
41+
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+
3759
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.
3860

3961
* :menuselection:`Tools --> NuGet Package Manager --> Package Manager Console`

0 commit comments

Comments
 (0)