WireMock.Net 1.5.24

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package WireMock.Net --version 1.5.24
NuGet\Install-Package WireMock.Net -Version 1.5.24
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.24" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add WireMock.Net --version 1.5.24
#r "nuget: WireMock.Net, 1.5.24"
#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.24

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

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-browser 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)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (21)

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 (18)

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/food-delivery-microservices
🍔 A practical food delivery 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.52 31,164 4/6/2024
1.5.51 77,105 3/20/2024
1.5.50 455 3/20/2024
1.5.49 94,977 3/6/2024
1.5.48 95,102 2/17/2024
1.5.47 165,619 1/25/2024
1.5.46 252,270 12/23/2023
1.5.45 16,383 12/21/2023
1.5.44 37,034 12/14/2023
1.5.43 31,703 12/11/2023
1.5.42 13,496 12/9/2023
1.5.41 62,390 12/4/2023
1.5.40 203,896 11/7/2023
1.5.39 265,872 10/9/2023
1.5.38 1,383 10/9/2023
1.5.37 79,635 9/27/2023
1.5.36 203,841 9/21/2023
1.5.35 363,403 8/19/2023
1.5.34 158,033 8/4/2023
1.5.32 326,427 7/15/2023
1.5.31 112,987 7/8/2023
1.5.30 138,865 6/28/2023
1.5.29 56,530 6/22/2023
1.5.28 150,274 6/11/2023
1.5.27 51,798 6/3/2023
1.5.26 175,261 5/25/2023
1.5.25 210,921 5/13/2023
1.5.24 114,269 5/7/2023
1.5.23 142,885 4/23/2023
1.5.22 290,452 4/8/2023
1.5.21 151,260 3/22/2023
1.5.20 44,147 3/19/2023
1.5.19 4,729 3/17/2023
1.5.18 77,648 3/9/2023
1.5.17 86,665 2/25/2023
1.5.16 225,947 2/6/2023
1.5.15 112,455 1/29/2023
1.5.14 31,221 1/24/2023
1.5.13 494,318 12/11/2022
1.5.12 87,626 12/3/2022
1.5.11 59,569 11/24/2022
1.5.10 316,933 11/6/2022
1.5.9 71,683 10/29/2022
1.5.8 147,364 10/16/2022
1.5.7 63,022 10/11/2022
1.5.6 313,403 9/12/2022
1.5.5 61,354 9/3/2022
1.5.4 75,831 8/24/2022
1.5.3 209,644 7/29/2022
1.5.2 47,892 7/24/2022
1.5.1 146,096 7/8/2022
1.5.0 210,029 6/10/2022
1.4.43 236,413 5/21/2022
1.4.42 179,377 5/13/2022
1.4.41 201,096 4/22/2022
1.4.40 317,465 3/26/2022
1.4.39 4,695 3/25/2022
1.4.38 98,830 3/12/2022
1.4.37 85,365 3/2/2022
1.4.36 13,944 2/25/2022
1.4.35 123,083 2/9/2022
1.4.34 215,758 1/27/2022
1.4.33 8,987 1/24/2022
1.4.32 76,852 1/17/2022
1.4.31 69,103 1/6/2022
1.4.30 57,157 12/25/2021
1.4.29 113,980 12/12/2021
1.4.28 69,312 12/1/2021
1.4.27 134,844 11/17/2021
1.4.26 120,556 11/4/2021
1.4.25 49,890 10/27/2021
1.4.24 32,352 10/20/2021
1.4.23 1,006,709 9/27/2021
1.4.22 45,515 9/22/2021
1.4.21 99,472 9/16/2021
1.4.20 286,340 8/6/2021
1.4.19 11,803 8/4/2021
1.4.18 138,169 7/10/2021
1.4.17 9,011 7/7/2021
1.4.16 258,610 6/5/2021
1.4.15 99,632 5/19/2021
1.4.14 87,412 5/11/2021
1.4.13 59,124 4/26/2021
1.4.12 29,157 4/22/2021
1.4.11 21,085 4/18/2021
1.4.10 17,764 4/15/2021
1.4.9 68,285 3/31/2021
1.4.8 94,284 3/24/2021
1.4.7 13,891 3/21/2021
1.4.6 130,702 2/26/2021
1.4.5 77,033 2/11/2021
1.4.4 11,228 2/9/2021
1.4.3 21,217 2/5/2021
1.4.2 40,870 1/24/2021
1.4.1 19,923 1/19/2021
1.4.0 32,830 1/12/2021
1.3.10 80,043 12/23/2020
1.3.9 93,605 12/8/2020
1.3.8 14,221 12/3/2020
1.3.7 90,779 11/17/2020
1.3.6 23,955 11/10/2020
1.3.5 13,049 11/4/2020
1.3.4 182,886 10/17/2020
1.3.3 6,742 10/15/2020
1.3.2 8,060 10/14/2020
1.3.1 70,074 9/30/2020
1.3.0 26,150 9/29/2020
1.2.18 362,401 8/13/2020
1.2.17 26,635 8/1/2020
1.2.16 45,863 7/27/2020
1.2.15 48,968 7/19/2020
1.2.14 154,848 7/9/2020
1.2.13 3,132 7/9/2020
1.2.12 175,493 5/23/2020
1.2.11 12,363 5/18/2020
1.2.10 4,021 5/17/2020
1.2.9 14,821 5/14/2020
1.2.8 26,787 5/4/2020
1.2.7 5,687 4/30/2020
1.2.6 8,088 4/29/2020
1.2.5 94,155 4/17/2020
1.2.4 15,475 4/10/2020
1.2.3 92,889 4/1/2020
1.2.2 36,871 3/25/2020
1.2.1 32,648 3/17/2020
1.2.0 5,565 3/14/2020
1.1.10 19,258 3/5/2020
1.1.9 31,581 2/25/2020
1.1.8 7,584 2/22/2020
1.1.7 54,334 2/6/2020
1.1.6 22,630 1/27/2020
1.1.5 5,541 1/25/2020
1.1.4 2,894 1/25/2020
1.1.3 16,992 1/22/2020
1.1.2 27,940 1/9/2020
1.1.1 3,069 1/9/2020
1.1.0 40,835 12/27/2019
1.0.43 11,050 12/26/2019
1.0.42 54,105 12/15/2019
1.0.41 3,157 12/14/2019
1.0.40 20,871 12/9/2019
1.0.39 3,531 12/7/2019
1.0.38 20,251 11/30/2019
1.0.37 125,304 11/8/2019
1.0.36 42,431 10/26/2019
1.0.36-ci-12100 2,202 11/18/2019
1.0.35 19,221 10/25/2019
1.0.34 31,349 10/22/2019
1.0.33 16,119 10/12/2019
1.0.32 94,931 9/20/2019
1.0.31 4,320 9/19/2019
1.0.30 49,243 9/1/2019
1.0.29 30,911 8/23/2019
1.0.28 8,676 8/20/2019
1.0.27 11,153 8/14/2019
1.0.26 41,703 8/11/2019
1.0.25 36,263 7/23/2019
1.0.24 6,610 7/22/2019
1.0.23 21,328 7/16/2019
1.0.22 10,321 7/15/2019
1.0.20 55,431 6/17/2019
1.0.19 3,443 6/15/2019
1.0.18 53,477 6/10/2019
1.0.17 12,957 6/5/2019
1.0.16 46,639 5/16/2019
1.0.15 33,947 5/4/2019
1.0.14 22,227 4/20/2019
1.0.13 17,656 4/11/2019
1.0.12 57,150 4/5/2019
1.0.11 5,779 3/30/2019
1.0.10 5,866 3/27/2019
1.0.9 9,429 3/25/2019
1.0.8 38,087 3/12/2019
1.0.7 69,582 1/19/2019
1.0.6.1 13,489 1/10/2019
1.0.6 14,203 12/15/2018
1.0.5 10,817 12/7/2018
1.0.4.21 29,504 11/30/2018
1.0.4.20 52,151 11/7/2018
1.0.4.19 28,632 10/31/2018
1.0.4.18 15,632 10/27/2018
1.0.4.17 38,824 9/22/2018
1.0.4.16 191,873 9/11/2018
1.0.4.15 5,239 9/4/2018
1.0.4.14 6,431 9/2/2018
1.0.4.13 3,641 8/31/2018
1.0.4.12 5,652 8/23/2018
1.0.4.11 3,969 8/20/2018
1.0.4.10 32,672 8/14/2018
1.0.4.9 5,578 8/8/2018
1.0.4.8 21,849 7/23/2018
1.0.4.7 4,601 7/19/2018
1.0.4.6 5,145 7/18/2018
1.0.4.5 6,981 7/17/2018
1.0.4.4 15,736 7/1/2018
1.0.4.3 3,718 6/29/2018
1.0.4.2 6,485 6/26/2018
1.0.4.1 4,502 6/25/2018
1.0.4 16,179 6/23/2018
1.0.3.20 39,260 5/29/2018
1.0.3.19 4,218 5/28/2018
1.0.3.18 3,976 5/25/2018
1.0.3.17 12,421 5/16/2018
1.0.3.16 23,014 4/15/2018
1.0.3.15 12,677 4/5/2018
1.0.3.14 4,137 4/1/2018
1.0.3.13 35,178 3/24/2018
1.0.3.11 5,602 3/20/2018
1.0.3.10 7,492 3/17/2018
1.0.3.9 4,933 3/15/2018
1.0.3.8 8,744 3/10/2018
1.0.3.7 4,330 3/9/2018
1.0.3.6 3,510 3/8/2018
1.0.3.5 4,608 3/8/2018
1.0.3.4 4,603 3/4/2018
1.0.3.3 5,700 2/24/2018
1.0.3.2 24,805 2/14/2018
1.0.3.1 3,533 2/14/2018
1.0.3 4,952 2/5/2018
1.0.2.13 14,414 1/23/2018
1.0.2.12 5,174 1/16/2018
1.0.2.11 14,446 12/20/2017
1.0.2.10 4,789 12/12/2017
1.0.2.9 5,545 12/7/2017
1.0.2.8 5,901 11/23/2017
1.0.2.7 4,566 11/18/2017
1.0.2.6 4,729 10/30/2017
1.0.2.5 3,857 10/24/2017
1.0.2.4 21,709 10/10/2017
1.0.2.4-preview-02 3,233 9/30/2017
1.0.2.4-preview-01 3,055 8/11/2017
1.0.2.3 16,050 8/8/2017
1.0.2.3-preview2-final-03 2,904 8/10/2017
1.0.2.3-preview2-final-02 2,763 8/10/2017
1.0.2.3-preview2-final-01 2,878 8/10/2017
1.0.2.1 3,734 6/14/2017
1.0.2 8,717 5/5/2017
1.0.1.5 4,277 3/21/2017
1.0.1.4 2,674 3/21/2017
1.0.1.2 2,593 2/27/2017
1.0.1.1 2,584 2/10/2017
1.0.0 14,228 1/24/2017

# 1.5.24 (07 May 2023)
- #926 Fix C# mapping code generator for header names [bug]
- #927 Enrich generated code with status code [feature]
- #930 Update C# mapping code generator for WithStatusCode [feature]
- #931 Add property 'IsStartedWithAdminInterface' to 'IWireMockServer' [feature]
- #933 C# code generator improvements [feature]

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