-
Notifications
You must be signed in to change notification settings - Fork 352
Add netstandard support to appropriate packages #4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Blocked: Have a branch ready to go but #32 blocks applying it. Can't create a true .NET Standard library without more-recent tooling. Also unable to avoid Microsoft.Net.Http package and its "unique" System.Net.Http.Primitives.dll dependency when building a Profile259 library. |
Unblocked: A couple of the CI machines have VS 2015 installed and they should be up-to-date enough to build these new projects. |
Git portion done in f830808. Will wait for a build on CI then do TFS portion… |
Nightly build was successful after both checkins:
|
Yayyyyyyy!!!!!!!! |
why hasn't this shipped to nuget.org yet? |
/cc: @jasmineymlo @tameraw |
We keep getting higher-priority items on our plate, so this keeps falling off our plate. I'll boost the priority on this item this week. |
@Eilon @dougbu |
@YakhontovYaroslav the More generally, if you're building an ASP.NET Core web application, please have a look at |
@dougbu Im not looking for server side implementation. As i mentioned above, we are using this formatter (as well as Json and Xml from same namespace) to dynamically build HttpClient pipelines using DelegatingHandler and Castle.Core proxies. Its neat way to declare whole serialization\deserialization pipelines using just interface declaration with custom attributes like ContentType, Accept, Route, Method etc. Many 3rd party APIs still uses FormUrlEncoded in POST and GET requests, and we must somehow integrate with them. Removing FormUrlEncodedMediaTypeFormatter from Microsoft.AspNet.WebApi.Client package will force us (and many people who used it similar way) to create our own implementation of FormData formatter, which seems unnecessary, when package already contains this functionality, which can be easily ported to .netstandard. Code Example of such interface:
` In fact there is no changes needed to achieve this, besides adding file link to csproj. I`ve event created pull request for this: Cheers, and thanks for your attention. |
The Web API "client" packages should have support for the lowest netstandard TFM possible.
The text was updated successfully, but these errors were encountered: