-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Consume new Microsoft.AspNet.WebApi.Client.5.2.4 package #5822
Comments
This is approved, but let's figure out the plan to actually ship the 5.2.4 wave of packages. |
Should I go ahead with this in the meantime i.e. with the nightly ASP.NET feed in MVC's NuGet.config? |
We should talk about how to do the release and see if we can just do that. |
Side note: Fix here should include removing the last couple of |
Any plans for a public aspnet/AspNetWebStack? |
The first priority is to publish 3.2.4 / 5.2.4 packages from aspnet/AspNetWebStack or at least the Microsoft.AspNet.WebApi.Client.5.2.4 package on NuGet. But, yes, work to make that repo public is in progress. |
@Eilon were we going to remove this package? Is there an issue tracking that? |
Oops forgot to log an issue. I'll start a thread first. I'll actually go do that now. |
@dougbu How is Microsoft.AspNet.WebApi.Client 5.2.4 coming along? I would really like to see it on NuGet. |
@vanillajonathan the 5.2.4 package release is not yet available on NuGet. We've been consumed with |
@dougbu is |
thanks @dougbu |
It would be really nice with a small intermediate NuGet release of Microsoft.AspNet.WebApi.Client with just support for netstandard asap so we can write against APIs on .NET Core using |
@anurse please remind me what additional change needs to happen in aspnet/AspNetWebStack for the Microsoft.AspNet.WebApi.Client.5.2.4 package to work in the new .NET 4.6.1 world. Was it just the one item?
|
That should do it. The goal is to ensure that there is a Framework Assembly Reference to |
According to this, yes. It will be all fixed in the next few hours, apparently. |
What is the ETA on 5.2.4? Having the same issue Vinhaman stated 8/21 --- I've tried to update my project to .net core 2.0 and i'm having some issues with the 5.2.3 (it builds but fails on execution due to dependencies of System.Net.Http.Primitives ...) |
Hi @dscarmoz |
I don't think that will work for me. I'm running on a linux stack in PCF and the available buildpacks do not support it. |
- #5822 - update `Microsoft.AspNet.WebApi.Client` package version - remove remaining few `$(PackageTargetFallback)` settings - remove .NET Standard-specific files - they duplicate what Microsoft.AspNet.WebApi.Client now provides - necessary only if cross-compiling a PCL version of the WebApiCompatShim - add type forwarding for the removed `public` types - reenable .NET Framework WebApiCompatShim tests - add breaking change record for `MediaTypeFormatterMatchRanking` value change - version of this type in the shim lacked the `MatchOnRequestWithMediaTypeMapping` value
- aspnet/Mvc#5822 - see also PR aspnet/Mvc#7200 and aspnet/Universe#756 - remove remaining few `$(PackageTargetFallback)` settings
- #5822 - update `Microsoft.AspNet.WebApi.Client` package version - remove remaining few `$(PackageTargetFallback)` settings - remove .NET Standard-specific files - they duplicate what Microsoft.AspNet.WebApi.Client now provides - necessary only if cross-compiling a PCL version of the WebApiCompatShim - add type forwarding for the removed `public` types - reenable .NET Framework WebApiCompatShim tests - add breaking change record for `MediaTypeFormatterMatchRanking` value change - version of this type in the shim lacked the `MatchOnRequestWithMediaTypeMapping` value
@dougbu should we log another bug to update to 5.2.4 RTM? Though it's not likely we'll forget to do that, it's good to have an item tracking stuff we know we have to do. |
Well, if you weren't OOF, I would have asked you just that 😺 I'll file one… The other thing I would have asked an in-person @Eilon: bab520f requires users to remove a previously-required |
Or leave the bug as-is, but post a breaking-change announcement about it. THat'll be especially helpful for release notes, etc. |
See #7212 for the follow-on work. |
@anurse I have upgraded a .NET4.6 library to .NET 4.6.1 and it is complaining about missing |
@asjafjell please open a new issue for the problem you're seeing. Also, what is necessary to reproduce the problem and what are the details of the "complaining"? |
@dougbu it seems to be automatic binding redirects that was my problem. I did not know that this would be an issue between 4.6.0 and 4.6.1, so by adding
as indicated in dotnet/standard#481, the problem was fixed. The complaining, was that the method was missing runtime. |
New announcement (aspnet/Announcements#286) and discussion (#7229) issues are now live. I couldn't find a major break but the recommendation stands. |
Our Microsoft.AspNetCore.Mvc.WebApiCompatShim package currently has an indirect dependency on the Microsoft.Net.Http package. Building the shim project requires imports when targeting .NET Standard for the same reason. Both issues could be avoided if we moved to the latest Microsoft.AspNet.WebApi.Client package.
See also
The text was updated successfully, but these errors were encountered: