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
(please ignore the name of the feed; it is incorrect 😦)
Update your project
Open an existing .NET Core 2.0 project's CSPROJ file
Update the version of the Microsoft.AspNetCore.All package from 2.0.0 to 2.0.3-*
Update the version of all the other <PackageReference> items from 2.0.0 to 2.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:
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
The text was updated successfully, but these errors were encountered:
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
Microsoft.AspNetCore.All
package from2.0.0
to2.0.3-*
<PackageReference>
items from2.0.0
to2.0.1-*
(Note: This is a different version than the.All
package!)<PropertyGroup>
at the top of the CSPROJ file:<NoWarn>$(NOWARN);NU1605</NoWarn>
dotnet restore
to restore the pre-release patch packages into the project (or restore packages from your IDE, such as Visual Studio 2017)Additional resources
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
The text was updated successfully, but these errors were encountered: