68 lines
3.6 KiB
XML
68 lines
3.6 KiB
XML
<?xml version="1.0"?>
|
|
<package >
|
|
<metadata>
|
|
<id>Flurl.Http</id>
|
|
<version>0.8.0</version>
|
|
<title>Flurl.Http</title>
|
|
<authors>Todd Menier</authors>
|
|
<projectUrl>http://tmenier.github.io/Flurl</projectUrl>
|
|
<iconUrl>https://pbs.twimg.com/profile_images/534024476296376320/IuPGZ_bX_400x400.png</iconUrl>
|
|
<licenseUrl>https://raw.githubusercontent.com/tmenier/Flurl/master/LICENSE</licenseUrl>
|
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
|
<description>
|
|
A fluent, portable, testable HTTP client library that extends Flurl's URL builder chain.
|
|
</description>
|
|
<releaseNotes>
|
|
0.8.0 - Support for the NETCore (github #61)
|
|
0.7.0 - BREAKING CHANGES: https://github.com/tmenier/Flurl/wiki/Release-Notes
|
|
0.6.4 - nuspec fix for Xamarin/non-PCL, AllowHttpStatus overloads with HttpStatusCode enum.
|
|
0.6.3 - Updated Flurl dependency to 1.0.9.
|
|
0.6.2 - Respect Json.NET's JsonConvert.DefaultSettings
|
|
0.6.1 - Fixed possibly dictionary lookup bug (github #34).
|
|
0.6.0 - Added support for cancellation tokens, PATCH, string request bodies.
|
|
0.5.3 - Updated Flurl dependency to 1.0.7.
|
|
0.5.2 - Allowed HTTP status at the individual client/call level, i.e. url.AllowHttpStatus("3xx"), url.AllowAnyHttpStatus()
|
|
0.5.1 - Configure which HTTP statuses won't throw exceptions, i.e. FlurlHttp.Configure(c => c.AllowedHttpStatusRange = "100-299,4xx");
|
|
0.5.0 - Added deserialization helpers for error responses (FlurlHttpException.FlurlHttpException.GetResponseJson, etc).
|
|
0.4.2 - Updated Flurl dependency to 1.0.6.
|
|
0.4.1 - GitHub #25 - some exceptions not triggering global OnError.
|
|
0.4.0 - Client lifetime management - see http://bit.ly/1zqmuLA.
|
|
0.3.0 - Added support for sending cookies (WithCookie/WithCookies), including breaking change to IHttpClientFactory.
|
|
0.2.5 - Added hook to create HttpClientHandler from custom factory, updated Flurl dependency.
|
|
0.2.4 - Updated Flurl dependency for PCL to 1.0.2.
|
|
0.2.3 - New properties added to HttpCall: Url, Completed, Succeeded, HttpStatus.
|
|
0.2.2 - Updated Flurl dependency for PCL to 1.0.1.
|
|
0.2.1 - Added support for getting streams and byte arrays.
|
|
0.2.0 - Added .NET 4.5 specific version with fewer dependencies.
|
|
0.1.3 - Added support for HEAD requests via HeadAsync (thanks to @benb1n).
|
|
</releaseNotes>
|
|
<tags>httpclient rest json http fluent portable url uri tdd assert async</tags>
|
|
<dependencies>
|
|
<group targetFramework="net45">
|
|
<dependency id="Newtonsoft.Json" version="6.0.3" />
|
|
<dependency id="Flurl" version="1.1.0" />
|
|
</group>
|
|
<group targetFramework="portable-net45+sl50+win+wpa81+wp80">
|
|
<dependency id="Microsoft.Bcl.Async" version="1.0.168" />
|
|
<dependency id="Microsoft.Net.Http" version="2.2.22" />
|
|
<dependency id="PCLStorage" version="0.9.6" />
|
|
<dependency id="Newtonsoft.Json" version="6.0.3" />
|
|
<dependency id="Flurl" version="1.1.0" />
|
|
</group>
|
|
<group targetFramework=".NETPlatform5.4">
|
|
<dependency id="Flurl" version="1.1.0" />
|
|
<dependency id="Newtonsoft.Json" version="8.0.3" />
|
|
<dependency id="System.Dynamic.Runtime" version="4.0.10" />
|
|
<dependency id="System.IO.FileSystem" version="4.0.0" />
|
|
<dependency id="System.Net.Http" version="4.0.0" />
|
|
<dependency id="System.Text.RegularExpressions" version="4.0.10" />
|
|
<dependency id="System.Threading" version="4.0.10" />
|
|
</group>
|
|
</dependencies>
|
|
</metadata>
|
|
<files>
|
|
<file src="..\Flurl.Http.NET45\bin\Release\Flurl.Http.*" target="lib\net45" />
|
|
<file src="..\Flurl.Http.PCL\bin\Release\Flurl.Http.*" target="lib\portable-net45+sl50+win+wpa81+wp80" />
|
|
<file src="..\artifacts\bin\Flurl.Http.NETCore\Release\dotnet5.4\Flurl.Http.*" target="lib\dotnet5.4" />
|
|
</files>
|
|
</package> |