Flurl/Build/Flurl.nuspec
Nikolay Molchanov 8aa329bbd0 This closes #61
2016-04-06 00:40:58 +03:00

44 lines
2.1 KiB
XML

<?xml version="1.0"?>
<package >
<metadata>
<id>Flurl</id>
<version>1.1.0</version>
<title>Flurl</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 URL builder. To make HTTP calls off the fluent chain, check out Flurl.Http.
</description>
<releaseNotes>
1.1.0 - Support for the NETCore (github #61)
1.0.10 - More flexible kv parsing (github pr #16)
1.0.9 - Decode + as space, optionally encode space as + (github #41)
1.0.8 - Don't trim trailing slash (github #37)
1.0.7 - Bugfix - parsing querystrings like: "?x=1&amp;x=2" (thanks @miiihi)
1.0.6 - Use CultureInfo.InvariantCulture in a few string conversions
1.0.5 - Url.GetRoot (static) and Url.ResetToRoot
1.0.4 - Support for multi-value query params, i.e. SetQueryParam("x", new[] { 1, 2 }) => "x=1&amp;x=2")
1.0.3 - Bugfix - exclude null values from querystring (thanks to @niemyjski)
1.0.2 - Bugfix related to querystring with only key (thanks to @rafaelsteil)
1.0.1 - Fixed DLL version, dropped support for xbox and wp7 due to VS2013 upgrade
1.0.0 - Minor code cleanup, no API changes.
0.2.2 - Nuspec updates, no changes to binaries.
0.2.1 - Fixed a couple string extensions whose names were inconsistent with their Flurl.Url equivalent.
0.2.0 - Added PCL support.
</releaseNotes>
<tags>fluent portable url uri querystring builder</tags>
<dependencies>
<group targetFramework=".NETPlatform5.4">
<dependency id="System.Linq" version="4.0.0" />
<dependency id="System.Reflection.TypeExtensions" version="4.0.0" />
</group>
</dependencies>
</metadata>
<files>
<file src="..\Flurl\bin\Release\Flurl.*" target="lib\portable-net40+sl50+win+wpa81+wp80+MonoAndroid10+MonoTouch10" />
<file src="..\artifacts\bin\Flurl.NETCore\Release\dotnet5.4\Flurl.*" target="lib\dotnet5.4" />
</files>
</package>