Open
Description
Hi, we now have a public test feed that you can use to try out the ASP.NET/EF Core 2.0.3 patch!
You can test this pre-release patch by adding the following feed to your app's or machine's NuGet.config file:
https://dotnet.myget.org/F/aspnet-2-0-2-october2017-patch-public/api/v3/index.json
Update your project
- Open an existing .NET Core 2.0 project's CSPROJ file
- Update the version of the
Microsoft.AspNetCore.All
package from2.0.0
to2.0.3-*
- Update the version of all the other
<PackageReference>
items from2.0.0
to2.0.1-*
(Note: This is a different version than the.All
package!) - Add the following element to the
<PropertyGroup>
at the top of the CSPROJ file:<NoWarn>$(NOWARN);NU1605</NoWarn>
- From a command line window (terminal), run
dotnet restore
to restore the pre-release patch packages into the project (or restore packages from your IDE, such as Visual Studio 2017) - You should now be able to run your project with the pre-release patch packages
Additional resources
- More info on updating NuGet packages is available here:
- The full list of fixes and changes made in this patch are available using this query:
- You can browse the list of updated packages on this gallery page:
Feedback
We are looking for feedback on this patch. We'd like to know if you have any issues with this patch by updating your apps and libraries to the latest packages and seeing if it fixes the issues you've had, or if it introduces any new issues. If you have any issues or questions, please reply on the discussion thread to let us know as soon as possible.
What's next
We will post an update when the patch is publicly available on NuGet.org.
Thanks,
Eilon