CallR 1.1.13

There is a newer version of this package available.
See the version list below for details.
dotnet add package CallR --version 1.1.13
NuGet\Install-Package CallR -Version 1.1.13
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="CallR" Version="1.1.13" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CallR --version 1.1.13
#r "nuget: CallR, 1.1.13"
#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 CallR as a Cake Addin
#addin nuget:?package=CallR&version=1.1.13

// Install CallR as a Cake Tool
#tool nuget:?package=CallR&version=1.1.13

Binaries for the CallR library.
       Visit https://github.com/tejacques/callr for an overview and usage examples.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in 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.0.0 1,749 8/22/2014
1.1.15 1,171 7/25/2014
1.1.14 1,184 7/24/2014
1.1.13 1,159 7/23/2014
1.1.12 1,258 6/17/2014
1.1.10 1,252 5/22/2014
1.1.9 1,167 5/21/2014
1.1.8 1,170 5/21/2014
1.1.7 1,184 5/20/2014
1.1.6 1,303 5/13/2014
1.1.5 1,262 5/7/2014
1.1.3 1,165 5/5/2014
1.1.0 1,278 3/18/2014
1.0.2 1,228 1/27/2014

Notes:

       Version 1.1.13
           - Add a new CallRParameter, Cachebust. This can be any JSON value and will act as part of the cache key for requests. Changing it will guarantee fresh results from cached hub calls.
           - Add RefreshEntries option to CallRCache. Setting it to true (default: true) will update the TTL of entries that are pulled, while setting it to false will cause entries to expire after the TTL time from when they were entered.
           - Update dependency to CallR.JS 1.1.2 to get new configurable smartDisconnect option.

       Version 1.1.12
           - Fix a bug with the IHubRequestParser causing the custom serializer to not be used in some cases.

       Version 1.1.11
           - Add a custom IHubRequestParser to allow the request parser to use a custom serializer instead of the default SignalR JsonUtility serializer.

       Version 1.1.10
           - Update Polarize dependency to 0.2.3 to include a bugfix on constraints

       Version 1.1.9
           - Fix #7 so that custom key functions can be used by passing a type with a static method. A little bit janky, but this is what Json.Net does, so it must be legit.

       Version 1.1.8
           - Correct libary versions

       Version 1.1.7
           - Update dependency on Polarize to include a critical bug fix.

       Version 1.1.6
           - Add CustomKey lambda for creating a cache key from function arguments.

       Version 1.1.5
           - Update Packages compiled against

       Version 1.1.4
           - Update Version dependencies for Polarize and SignalR

       Version 1.1.3:
           - Add source files and debugging symbols

       Version 1.1.2:
           - Dependency on CallR.JS >=1.1.1

       Version 1.1.1:
           - Fix #3: Fix a race condition when adding entries to the HubCache.

       Version 1.1.0:
           - Add ConfigureCallR() extension method to IAppBuilder
           - Add HubPipelineModule for caching
           - Add HubPipelineModule for filtering Json response using Polarize
           - Dependency on Polarize >=0.2.0
           - Dependency on CallR.JS >=1.1.0

       Version 1.0.2:
           - Update dependencies

       Version 1.0.1:
           - Fix HubUtility SendToAll

       Version 1.0.0:
           - HubUtility methods and extension methods for interacting with SignalR hubs.
           - SendToAll(this THub hub, string type, params object[] parameters)
           - SendToAll(string type, params object[] parameters)
           - SendToClients(dynamic clients, string eventType, params object[] parameters)
           - SendToGroup(this THub hub, string groupName, string type, params object[] parameters)
           - SendToGroup(string groupName, string type, params object[] parameters)