I am using ASP.NET Core. I want to use HttpClient
but I noticed that there are two NuGet packages being offered. Which one do I use?
ASP.NET is a web application framework designed and developed by Microsoft. ASP.NET is an open-source and a subset of the . NET Framework and successor of the classic ASP(Active Server Pages).
The System. Net. Http namespace is designed to provide the following: HTTP client components that allow users to consume modern web services over HTTP.
. NET Standard is an API specification that defines, for a given version, what Base Class Libraries must be implemented. . NET Core is a managed framework that is optimized for building console, cloud, ASP.NET Core, and UWP applications.
ASP.NET: The framework that allows you to build web applications and web APIs. Windows Presentation Foundation (WPF): A graphical user interface for Windows desktop applications. Xamarin: The framework for building cross-platform mobile, TV, and desktop applications.
Depends on the version. The old System.Net.Http
packages (the 2.0 ones) are legacy packages which are deprecated in favor of Microsoft.Http.Net
according to the description:
Legacy package, System.Net.Http is now included in the 'Microsoft.Net.Http' package.
They exist to provide the HttpClient
in previous .NET versions and Portable Class libraries. You should use Microsoft.Net.Http
in that case.
Since you're using .NET Core, you should use the latest System.Net.Http
package (eg. 4.3.3).
Updated for csproj
As of .NET Standard 2.0, the System.Net.HttpClient
package is already included and available when you target netstandard2.0
. If, for some reason, you still want to reference it for both full .NET and .NET Core, you can add this to your csproj file:
<ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> <!-- // HttpClient for full .NET --> <Reference Include="System.Net.Http" /> </ItemGroup> <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> <!-- // HttpClient for .NET Core --> <PackageReference Include="System.Net.Http" Version="4.3.3" /> </ItemGroup>
If you're using project.json
If your project.json targets both full .NET and .NET Core, you have to add the System.Net.Http
assembly to the frameworkAssemblies
element. For example:
"frameworks": { "net451": { "frameworkAssemblies": { "System.Net.Http": "4.0.0.0" // HttpClient for full .NET } }, "netstandard1.3": { "dependencies": { "System.Net.Http": "4.1.0", // HttpClient for .NET Core } } }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With