WireMock.Net 1.5.40

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
.NET 5.0 .NET Core 3.1 .NET Standard 1.3 .NET Framework 4.5.1
dotnet add package WireMock.Net --version 1.5.40
NuGet\Install-Package WireMock.Net -Version 1.5.40
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="WireMock.Net" Version="1.5.40" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WireMock.Net --version 1.5.40
#r "nuget: WireMock.Net, 1.5.40"
#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 WireMock.Net as a Cake Addin
#addin nuget:?package=WireMock.Net&version=1.5.40

// Install WireMock.Net as a Cake Tool
#tool nuget:?package=WireMock.Net&version=1.5.40

WireMock.Net

Lightweight Http Mocking Server for .NET, inspired by [WireMock(http://WireMock.org) from the Java landscape.

⭐ Key Features

  • HTTP response stubbing, matchable on URL/Path, headers, cookies and body content patterns
  • Library can be used in unit tests and integration tests
  • Runs as a standalone process, as windows service, as Azure/IIS or as docker
  • Configurable via a fluent C# .NET API, JSON files and JSON over HTTP
  • Record/playback of stubs (proxying)
  • Per-request conditional proxying
  • Stateful behaviour simulation
  • Response templating / transformation using Handlebars and extensions
  • Can be used locally or in CI/CD scenarios

⭐ Stubbing

A core feature of WireMock.Net is the ability to return predefined HTTP responses for requests matching criteria. See Wiki : Stubbing.

⭐ Request Matching

WireMock.Net support advanced request-matching logic, see Wiki : Request Matching.

⭐ Response Templating

The response which is returned WireMock.Net can be changed using templating. This is described here Wiki : Response Templating.

⭐ Admin API Reference

The WireMock admin API provides functionality to define the mappings via a http interface see Wiki : Admin API Reference.

⭐ Using

WireMock.Net can be used in several ways:

UnitTesting

You can use your favorite test framework and use WireMock within your tests, see Wiki : UnitTesting.

As a dotnet tool

It's simple to install WireMock.Net as (global) dotnet tool, see Wiki : dotnet tool.

As standalone process / console application

This is quite straight forward to launch a mock server within a console application, see Wiki : Standalone Process.

As a Windows Service

You can also run WireMock.Net as a Windows Service, follow this WireMock-as-a-Windows-Service.

As a Web Job in Azure or application in IIS

See this link WireMock-as-a-(Azure)-Web-App

In a docker container

There is also a Linux and Windows-Nano container available at hub.docker.com. For more details see also Docker.

HTTPS / SSL

More details on using HTTPS (SSL) can be found here Wiki : HTTPS

📚 Documentation

For more info, see also this WIKI page: What is WireMock.Net.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 is compatible. 
.NET Standard netstandard1.3 is compatible.  netstandard1.4 was computed.  netstandard1.5 was computed.  netstandard1.6 was computed.  netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net451 is compatible.  net452 is compatible.  net46 is compatible.  net461 is compatible.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen30 was computed.  tizen40 was computed.  tizen60 was computed. 
Universal Windows Platform uap was computed.  uap10.0 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (18)

Showing the top 5 NuGet packages that depend on WireMock.Net:

Package Downloads
WireMock.Net.StandAlone The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Lightweight StandAlone Http Mocking Server for .Net.

WireMock.Net.FluentAssertions The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

FluentAssertions extensions for WireMock.Net

WireMock.Net.Matchers.CSharpCode The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

A CSharpCodeMatcher which can be used to match WireMock.Net Requests using C# code.

ConnectingApps.IntegrationFixture

An AutoFixture inspired package to create instances for integration testing (not unit testing). Just create an instance of the Fixture class and this library does the work for you to trigger your code in the Startup and Program class. There is a create method to create a test instance and a freeze method to create external dependencies (services) with WireMock.NET

Cortside.MockServer

Package Description

GitHub repositories (16)

Showing the top 5 popular GitHub repositories that depend on WireMock.Net:

Repository Stars
rabbitmq/rabbitmq-dotnet-client
RabbitMQ .NET client for .NET Standard 2.0+ and .NET 4.6.2+
WireMock-Net/WireMock.Net
WireMock.Net is a flexible product for stubbing and mocking web HTTP responses using advanced request matching and response templating. Based on the functionality from http://WireMock.org, but extended with more functionality.
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
mehdihadeli/ecommerce-microservices
🛍️ A practical e-commerce microservices, built with .Net 7, MassTransit, Domain-Driven Design, CQRS, Vertical Slice Architecture, Event-Driven Architecture, and the latest technologies.
Avanade/Liquid-Application-Framework
Liquid Application Framework documentation, useful links and sample project
Version Downloads Last updated
1.5.40 42,982 11/7/2023
1.5.39 116,932 10/9/2023
1.5.38 327 10/9/2023
1.5.37 43,852 9/27/2023
1.5.36 85,907 9/21/2023
1.5.35 197,701 8/19/2023
1.5.34 117,504 8/4/2023
1.5.32 202,453 7/15/2023
1.5.31 83,965 7/8/2023
1.5.30 88,103 6/28/2023
1.5.29 37,455 6/22/2023
1.5.28 90,698 6/11/2023
1.5.27 37,461 6/3/2023
1.5.26 109,255 5/25/2023
1.5.25 162,705 5/13/2023
1.5.24 80,090 5/7/2023
1.5.23 115,045 4/23/2023
1.5.22 255,708 4/8/2023
1.5.21 127,809 3/22/2023
1.5.20 35,680 3/19/2023
1.5.19 3,523 3/17/2023
1.5.18 58,265 3/9/2023
1.5.17 75,283 2/25/2023
1.5.16 198,739 2/6/2023
1.5.15 102,168 1/29/2023
1.5.14 28,082 1/24/2023
1.5.13 397,926 12/11/2022
1.5.12 72,589 12/3/2022
1.5.11 51,500 11/24/2022
1.5.10 261,129 11/6/2022
1.5.9 62,676 10/29/2022
1.5.8 128,617 10/16/2022
1.5.7 54,379 10/11/2022
1.5.6 258,410 9/12/2022
1.5.5 50,698 9/3/2022
1.5.4 67,061 8/24/2022
1.5.3 185,591 7/29/2022
1.5.2 45,386 7/24/2022
1.5.1 116,528 7/8/2022
1.5.0 182,940 6/10/2022
1.4.43 215,595 5/21/2022
1.4.42 162,682 5/13/2022
1.4.41 166,279 4/22/2022
1.4.40 278,895 3/26/2022
1.4.39 3,251 3/25/2022
1.4.38 90,308 3/12/2022
1.4.37 80,096 3/2/2022
1.4.36 12,512 2/25/2022
1.4.35 111,805 2/9/2022
1.4.34 192,799 1/27/2022
1.4.33 7,576 1/24/2022
1.4.32 68,973 1/17/2022
1.4.31 59,710 1/6/2022
1.4.30 48,168 12/25/2021
1.4.29 103,780 12/12/2021
1.4.28 62,886 12/1/2021
1.4.27 131,017 11/17/2021
1.4.26 98,538 11/4/2021
1.4.25 44,220 10/27/2021
1.4.24 28,409 10/20/2021
1.4.23 994,981 9/27/2021
1.4.22 43,281 9/22/2021
1.4.21 74,205 9/16/2021
1.4.20 268,562 8/6/2021
1.4.19 10,537 8/4/2021
1.4.18 126,358 7/10/2021
1.4.17 7,639 7/7/2021
1.4.16 250,542 6/5/2021
1.4.15 92,802 5/19/2021
1.4.14 83,126 5/11/2021
1.4.13 56,025 4/26/2021
1.4.12 27,170 4/22/2021
1.4.11 19,562 4/18/2021
1.4.10 16,452 4/15/2021
1.4.9 64,093 3/31/2021
1.4.8 91,837 3/24/2021
1.4.7 12,416 3/21/2021
1.4.6 125,878 2/26/2021
1.4.5 68,317 2/11/2021
1.4.4 9,693 2/9/2021
1.4.3 18,493 2/5/2021
1.4.2 38,322 1/24/2021
1.4.1 18,630 1/19/2021
1.4.0 29,420 1/12/2021
1.3.10 72,938 12/23/2020
1.3.9 91,124 12/8/2020
1.3.8 11,812 12/3/2020
1.3.7 87,293 11/17/2020
1.3.6 20,474 11/10/2020
1.3.5 11,843 11/4/2020
1.3.4 175,251 10/17/2020
1.3.3 5,688 10/15/2020
1.3.2 6,487 10/14/2020
1.3.1 65,511 9/30/2020
1.3.0 24,641 9/29/2020
1.2.18 340,664 8/13/2020
1.2.17 25,364 8/1/2020
1.2.16 42,326 7/27/2020
1.2.15 46,262 7/19/2020
1.2.14 134,963 7/9/2020
1.2.13 1,814 7/9/2020
1.2.12 168,359 5/23/2020
1.2.11 11,094 5/18/2020
1.2.10 3,012 5/17/2020
1.2.9 13,516 5/14/2020
1.2.8 25,446 5/4/2020
1.2.7 4,493 4/30/2020
1.2.6 6,994 4/29/2020
1.2.5 90,678 4/17/2020
1.2.4 14,278 4/10/2020
1.2.3 87,821 4/1/2020
1.2.2 34,725 3/25/2020
1.2.1 31,016 3/17/2020
1.2.0 4,390 3/14/2020
1.1.10 17,575 3/5/2020
1.1.9 30,007 2/25/2020
1.1.8 6,134 2/22/2020
1.1.7 51,162 2/6/2020
1.1.6 21,410 1/27/2020
1.1.5 4,476 1/25/2020
1.1.4 1,707 1/25/2020
1.1.3 15,158 1/22/2020
1.1.2 26,685 1/9/2020
1.1.1 1,802 1/9/2020
1.1.0 37,860 12/27/2019
1.0.43 9,810 12/26/2019
1.0.42 50,597 12/15/2019
1.0.41 1,932 12/14/2019
1.0.40 19,572 12/9/2019
1.0.39 2,252 12/7/2019
1.0.38 17,898 11/30/2019
1.0.37 110,155 11/8/2019
1.0.36 39,982 10/26/2019
1.0.36-ci-12100 1,158 11/18/2019
1.0.35 16,869 10/25/2019
1.0.34 28,700 10/22/2019
1.0.33 14,548 10/12/2019
1.0.32 90,664 9/20/2019
1.0.31 3,335 9/19/2019
1.0.30 47,024 9/1/2019
1.0.29 29,293 8/23/2019
1.0.28 7,635 8/20/2019
1.0.27 10,042 8/14/2019
1.0.26 40,182 8/11/2019
1.0.25 34,776 7/23/2019
1.0.24 5,583 7/22/2019
1.0.23 19,354 7/16/2019
1.0.22 9,229 7/15/2019
1.0.20 52,680 6/17/2019
1.0.19 2,439 6/15/2019
1.0.18 50,847 6/10/2019
1.0.17 11,853 6/5/2019
1.0.16 44,973 5/16/2019
1.0.15 32,749 5/4/2019
1.0.14 21,140 4/20/2019
1.0.13 16,115 4/11/2019
1.0.12 49,295 4/5/2019
1.0.11 4,581 3/30/2019
1.0.10 4,755 3/27/2019
1.0.9 8,349 3/25/2019
1.0.8 35,949 3/12/2019
1.0.7 67,388 1/19/2019
1.0.6.1 12,374 1/10/2019
1.0.6 13,141 12/15/2018
1.0.5 9,758 12/7/2018
1.0.4.21 27,724 11/30/2018
1.0.4.20 48,329 11/7/2018
1.0.4.19 26,455 10/31/2018
1.0.4.18 13,962 10/27/2018
1.0.4.17 36,162 9/22/2018
1.0.4.16 189,300 9/11/2018
1.0.4.15 3,900 9/4/2018
1.0.4.14 4,943 9/2/2018
1.0.4.13 2,102 8/31/2018
1.0.4.12 4,233 8/23/2018
1.0.4.11 2,700 8/20/2018
1.0.4.10 27,598 8/14/2018
1.0.4.9 4,380 8/8/2018
1.0.4.8 20,431 7/23/2018
1.0.4.7 3,118 7/19/2018
1.0.4.6 3,847 7/18/2018
1.0.4.5 5,470 7/17/2018
1.0.4.4 13,891 7/1/2018
1.0.4.3 2,118 6/29/2018
1.0.4.2 4,859 6/26/2018
1.0.4.1 2,847 6/25/2018
1.0.4 14,718 6/23/2018
1.0.3.20 37,477 5/29/2018
1.0.3.19 2,501 5/28/2018
1.0.3.18 2,456 5/25/2018
1.0.3.17 9,957 5/16/2018
1.0.3.16 21,758 4/15/2018
1.0.3.15 11,233 4/5/2018
1.0.3.14 2,707 4/1/2018
1.0.3.13 30,506 3/24/2018
1.0.3.11 4,175 3/20/2018
1.0.3.10 6,051 3/17/2018
1.0.3.9 3,429 3/15/2018
1.0.3.8 7,186 3/10/2018
1.0.3.7 2,925 3/9/2018
1.0.3.6 2,110 3/8/2018
1.0.3.5 3,304 3/8/2018
1.0.3.4 3,126 3/4/2018
1.0.3.3 4,142 2/24/2018
1.0.3.2 23,074 2/14/2018
1.0.3.1 1,903 2/14/2018
1.0.3 3,556 2/5/2018
1.0.2.13 12,604 1/23/2018
1.0.2.12 3,810 1/16/2018
1.0.2.11 12,990 12/20/2017
1.0.2.10 3,301 12/12/2017
1.0.2.9 4,093 12/7/2017
1.0.2.8 4,542 11/23/2017
1.0.2.7 3,267 11/18/2017
1.0.2.6 3,270 10/30/2017
1.0.2.5 2,254 10/24/2017
1.0.2.4 20,136 10/10/2017
1.0.2.4-preview-02 1,809 9/30/2017
1.0.2.4-preview-01 1,579 8/11/2017
1.0.2.3 12,465 8/8/2017
1.0.2.3-preview2-final-03 1,476 8/10/2017
1.0.2.3-preview2-final-02 1,510 8/10/2017
1.0.2.3-preview2-final-01 1,511 8/10/2017
1.0.2.1 2,410 6/14/2017
1.0.2 7,436 5/5/2017
1.0.1.5 3,147 3/21/2017
1.0.1.4 1,754 3/21/2017
1.0.1.2 1,738 2/27/2017
1.0.1.1 1,693 2/10/2017
1.0.0 11,358 1/24/2017

# 1.5.40 (07 November 2023)
- #1009 Add more tests for JmesPathMatchers and StringUtils.ParseMatchOperator [test]
- #1010 Add unit tests for HttpClient with WebProxy [test]
- #1011 GraphQL - add support for standard scalar types in the schema [feature]
- #1014 FluentAssertions - WithBody and WithBodyAsJson and WithBodyAsBytes

The full release notes can be found here: https://github.com/WireMock-Net/WireMock.Net/blob/master/CHANGELOG.md