Suave.Razor 0.33.0-libuv1

This is a prerelease version of Suave.Razor.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Suave.Razor --version 0.33.0-libuv1                
NuGet\Install-Package Suave.Razor -Version 0.33.0-libuv1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Suave.Razor" Version="0.33.0-libuv1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Suave.Razor --version 0.33.0-libuv1                
#r "nuget: Suave.Razor, 0.33.0-libuv1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Suave.Razor as a Cake Addin
#addin nuget:?package=Suave.Razor&version=0.33.0-libuv1&prerelease

// Install Suave.Razor as a Cake Tool
#tool nuget:?package=Suave.Razor&version=0.33.0-libuv1&prerelease                

Suave is a simple web development F# library providing a lightweight web server and a set of combinators to manipulate route flow and task composition.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.7.0-beta 133 3/6/2023
2.6.0-beta4 529 10/7/2020
2.6.0-beta2 381 6/16/2020
2.6.0-beta1 333 6/16/2020
2.6.0-beta 400 6/16/2020
2.5.6 700 9/7/2019
2.5.5 652 6/5/2019
2.5.4 626 4/14/2019
2.5.3 733 11/10/2018
2.5.2 778 10/11/2018
2.5.1 791 9/29/2018
2.5.0 839 9/8/2018
2.5.0-beta2 637 7/31/2018
2.5.0-beta 655 7/27/2018
2.4.3 982 6/25/2018
2.4.2 897 6/20/2018
2.4.1 932 6/10/2018
2.3.0-beta3 890 12/30/2017
2.3.0-beta2 756 12/27/2017
2.3.0-beta 702 9/5/2017
2.2.1 1,050 8/17/2017
2.2.0 982 8/17/2017
2.1.1 1,081 6/17/2017
2.1.0 997 4/10/2017
2.0.5 1,000 3/25/2017
2.0.5-alpha 775 3/23/2017
2.0.4 1,009 2/19/2017
2.0.3 970 2/13/2017
2.0.2 973 1/19/2017
2.0.1 991 1/17/2017
2.0.0 993 1/3/2017
2.0.0-rc8 736 12/27/2016
2.0.0-rc7 781 12/27/2016
2.0.0-rc6 774 12/24/2016
2.0.0-rc5 766 12/23/2016
2.0.0-rc4 757 12/23/2016
2.0.0-rc3 815 12/12/2016
2.0.0-rc2 812 11/16/2016
2.0.0-rc1 1,017 11/4/2016
2.0.0-alpha7 754 10/22/2016
2.0.0-alpha6 780 9/26/2016
2.0.0-alpha5 773 9/1/2016
2.0.0-alpha4 812 6/7/2016
2.0.0-alpha3 791 5/23/2016
1.1.3 1,097 6/20/2016
1.1.2 1,056 3/28/2016
1.1.1 1,024 2/3/2016
1.1.0 971 1/25/2016
1.0.0 1,028 1/3/2016
1.0.0-beta2 813 12/20/2015
1.0.0-beta1 811 12/20/2015
0.34.0-nsrefactor1 865 12/19/2015
0.34.0-nsrefactor 1,005 11/29/2015
0.33.0 1,078 11/8/2015
0.33.0-libuv2 844 11/5/2015
0.33.0-libuv1 877 10/31/2015
0.33.0-libuv 852 10/23/2015
0.32.1 1,215 10/13/2015
0.32.0 1,092 10/10/2015
0.32.0-owin2 953 9/25/2015
0.32.0-owin 845 9/1/2015
0.31.2 1,083 9/4/2015
0.31.1 1,058 8/18/2015
0.31.0 1,465 8/13/2015
0.30.0 1,095 7/6/2015
0.29.1 1,030 6/21/2015
0.29.0 1,056 6/10/2015
0.29.0-alpha2 836 6/3/2015
0.29.0-alpha 834 6/2/2015
0.28.1 1,066 5/21/2015
0.28.0 1,032 5/20/2015
0.27.0 1,003 5/14/2015
0.26.2 1,230 5/1/2015
0.26.1 1,007 3/19/2015
0.26.0 1,037 3/7/2015
0.25.0 1,268 2/16/2015
0.21.0 1,137 1/5/2015
0.20.2 1,266 1/2/2015
0.20.1 1,458 1/2/2015
0.20.0 1,346 1/2/2015

Release Notes:

* v0.33-libuv.1
* Merge branch 'bugs/314-libuv'
* Merge pull request #318 from neoeinstein/connection-keep-alive-response
* remove executable bit to all .fs, .config and .txt files
* fix formatting, spacing and naming
* Add tests for HTTP/1.0 keep-alive directive
* Add `Connection: keep-alive` header when keep-alive is requested
* Revert "fork the continuations"
* wait for closing down sequence to finish before destroying the loop handle
* stop synchronization context before killing async handler
* move syncronizationContext to outer scope
* fork the continuations
* anchor delegate
* pin LibUvTransport to prevent early garbage collection
* implement shutdown for TlsTransport
* factor shutdown socket to ITransport
* [logging] update path strings
* Merge pull request #315 from SuaveIO/appveyor-build-matrix
* [example] AssemblyVersionInfo.cs for WebSharper example
* [msbuild] move section
* [example] assembly redirect mappings
* [appveyor] simplify build matrix
* websharper project
* [infra] introduce x86 build configuration section
* [tests] remove unused openssl references
* [appveyor] set Prefer32Bits explicitly
* [rake] missing space in platform target
* [rake] use different env variable
* [appveyor] is picking up the wrong platform target
* [appveyor] correct matrix configuration
* [appveyor] set plaforms
* set PlatformTarget AnyCPU everywhere
* [tests] informative output
* [appveyor] break multiline command
* [appveyor] correct indentation
* [appveyor] fix parsing error
* spacing
* setup build matrix
* check return code