Moksy 1.3.169

dotnet add package Moksy --version 1.3.169
                    
NuGet\Install-Package Moksy -Version 1.3.169
                    
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="Moksy" Version="1.3.169" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Moksy" Version="1.3.169" />
                    
Directory.Packages.props
<PackageReference Include="Moksy" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Moksy --version 1.3.169
                    
#r "nuget: Moksy, 1.3.169"
                    
#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.
#addin nuget:?package=Moksy&version=1.3.169
                    
Install Moksy as a Cake Addin
#tool nuget:?package=Moksy&version=1.3.169
                    
Install Moksy as a Cake Tool

Moksy is an open source .Net library for stubbing, mocking and simulating web services.

Intended to be driven from MsTest (or your favorite testing framework), Moksy will create a real HTTP Server end-point that your system under test or other services can hit.

For example:

Moksy.Common.Proxy proxy = new Moksy.Common.Proxy(10011);
proxy.Start();

var simulation = SimulationFactory.When.I.Get().From("/TheEndpoint").Then.Return.Body("Hello World!").And.StatusCode(System.Net.HttpStatusCode.OK);
proxy.Add(simulation);

Navigating to http://localhost:10011/TheEndpoint in your browser or hitting that Url from another service will return "Hello World!".

This release has a strong focus on testing JSON-based web services.

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
1.3.169 2,200 12/25/2015
1.3.146 1,732 1/4/2015
1.2.104 1,691 11/17/2014
1.2.73 2,303 11/4/2014
1.2.46 1,527 10/19/2014
1.1.37 1,497 10/16/2014
1.0.30 1,510 8/11/2014
1.0.18 1,529 8/10/2014

169: .CleanImdb() now part of simulation; Exists/NotExists no longer need an index for Imdb; (ALPHA: Object selection using JsonPath before adding to Imdb)