dotnet / aspnetcore

ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.
https://asp.net
MIT License
35.4k stars 10k forks source link

Microsoft.AspNetCore.JsonPatch is not netstandard any more #9812

Closed springy76 closed 5 years ago

springy76 commented 5 years ago

Since 3.0 preview2 Microsoft.AspNetCore.JsonPatch is only available for netcoreapp3.0, before it was for netstandard2.0.

I'm using this in a net472 WPF client app - should I use another package on client side? Which?

davidfowl commented 5 years ago

What types were you using?

springy76 commented 5 years ago

I'm using JsonPatchDocument<T> to build the patch which gets posted using Flurl or HttpClient.

mkArtakMSFT commented 5 years ago

@glennc what should we do here?