Moksy 1.3.146

dotnet add package Moksy --version 1.3.146
                    
NuGet\Install-Package Moksy -Version 1.3.146
                    
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.146" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Moksy" Version="1.3.146" />
                    
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.146
                    
#r "nuget: Moksy, 1.3.146"
                    
#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.146
                    
Install Moksy as a Cake Addin
#tool nuget:?package=Moksy&version=1.3.146
                    
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.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.146 250 1/4/2015
1.2.104 155 11/17/2014
1.2.73 801 11/4/2014
1.2.46 93 10/19/2014
1.1.37 79 10/16/2014
1.0.30 100 8/11/2014
1.0.18 77 8/10/2014

Nested Imdb. ie: /Pet/{Kind}/Toy/{Name}/ etc; start Proxy with additional parameters (ie: logging); improved matching of headers (partial, urlencoded); lots of internal refactoring to improve IntelliSense experience; various bug fixes.