Skip to content

Commit

Permalink
⬆️ Upgrade UWP to 5.2.2.
Browse files Browse the repository at this point in the history
Add additional binding redirect to UWP sample.
  • Loading branch information
Nate McMaster committed Jul 21, 2016
1 parent fa00a6e commit 61769f4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/platforms/uwp/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Upgrade Microsoft.NETCore.UniversalWindowsPlatform
--------------------------------------------------

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.1** or greater.
EF Core requires ``Microsoft.NETCore.UniversalWindowsPlatform`` version **5.2.2** or greater.

* :menuselection:`Tools --> NuGet Package Manager --> Package Manager Console`
* Run ``Update-Package Microsoft.NETCore.UniversalWindowsPlatform``
Expand Down
18 changes: 8 additions & 10 deletions samples/Platforms/UWP/UWP.SQLite/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,16 @@
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.IO.FileSystem.Primitives"
publicKeyToken="b03f5f7f11d50a3a"
culture="neutral" />
<bindingRedirect oldVersion="4.0.0.0"
newVersion="4.0.1.0"/>
<assemblyIdentity name="System.IO.FileSystem.Primitives" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="4.0.0.0" newVersion="4.0.1.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Threading.Overlapped"
publicKeyToken="b03f5f7f11d50a3a"
culture="neutral" />
<bindingRedirect oldVersion="4.0.0.0"
newVersion="4.0.1.0"/>
<assemblyIdentity name="System.Threading.Overlapped" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="4.0.0.0" newVersion="4.0.1.0"/>
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.ComponentModel.Annotations" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="4.1.0.0" newVersion="4.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
Expand Down
2 changes: 1 addition & 1 deletion samples/Platforms/UWP/UWP.SQLite/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"version": "1.0.0-preview2-final",
"type": "build"
},
"Microsoft.NETCore.UniversalWindowsPlatform": "5.2.1"
"Microsoft.NETCore.UniversalWindowsPlatform": "5.2.2"
},
"frameworks": {
"uap10.0": {}
Expand Down

0 comments on commit 61769f4

Please sign in to comment.