[PR #1175] [MERGED] Add WireMock.Net.AspNetCore.Middleware #1267

Closed
opened 2025-12-29 09:19:06 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/wiremock/WireMock.Net/pull/1175
Author: @StefH
Created: 9/19/2024
Status: Merged
Merged: 9/27/2024
Merged by: @StefH

Base: masterHead: us/1035-middleware


📝 Commits (7)

📊 Changes

23 files changed (+641 additions, -1 deletions)

View changed files

📝 .github/workflows/ci.yml (+2 -0)
📝 WireMock.Net Solution.sln (+29 -1)
📝 azure-pipelines-ci.yml (+1 -0)
examples/WireMock.Net.WebApplication/Program.cs (+56 -0)
examples/WireMock.Net.WebApplication/Properties/launchSettings.json (+41 -0)
examples/WireMock.Net.WebApplication/WeatherForecast.cs (+4 -0)
examples/WireMock.Net.WebApplication/WireMock.Net.WebApplication.csproj (+13 -0)
examples/WireMock.Net.WebApplication/appsettings.Development.json (+8 -0)
examples/WireMock.Net.WebApplication/appsettings.json (+9 -0)
src/WireMock.Net.AspNetCore.Middleware/AppConstants.cs (+9 -0)
src/WireMock.Net.AspNetCore.Middleware/HttpDelegatingHandler/WireMockDelegationHandler.cs (+72 -0)
src/WireMock.Net.AspNetCore.Middleware/HttpDelegatingHandler/WireMockDelegationHandlerSettings.cs (+8 -0)
src/WireMock.Net.AspNetCore.Middleware/ServiceCollectionExtensions.cs (+52 -0)
src/WireMock.Net.AspNetCore.Middleware/WireMock.Net.AspNetCore.Middleware.csproj (+49 -0)
src/WireMock.Net.AspNetCore.Middleware/WireMockBackgroundService.cs (+39 -0)
src/WireMock.Net.AspNetCore.Middleware/WireMockServerInstance.cs (+49 -0)
test/WireMock.Net.Middleware.Tests/CustomWebApplicationFactory.cs (+25 -0)
test/WireMock.Net.Middleware.Tests/IntegrationTests.cs (+49 -0)
test/WireMock.Net.Middleware.Tests/WireMock.Net.Middleware.Tests.csproj (+43 -0)
test/WireMock.Net.TestWebApplication/Program.cs (+49 -0)

...and 3 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/wiremock/WireMock.Net/pull/1175 **Author:** [@StefH](https://github.com/StefH) **Created:** 9/19/2024 **Status:** ✅ Merged **Merged:** 9/27/2024 **Merged by:** [@StefH](https://github.com/StefH) **Base:** `master` ← **Head:** `us/1035-middleware` --- ### 📝 Commits (7) - [`94fed7b`](https://github.com/wiremock/WireMock.Net/commit/94fed7b0f3e776fd4d01d7a46607c427f61b7327) Add WireMock.Net.AspNetCore.Middleware - [`41275f6`](https://github.com/wiremock/WireMock.Net/commit/41275f6ead749fcc8c282f92531ed9099eaca8de) . - [`a1ede1f`](https://github.com/wiremock/WireMock.Net/commit/a1ede1fb854148cb5de747a6b759e543c3344ac3) mm + fix - [`e423ad8`](https://github.com/wiremock/WireMock.Net/commit/e423ad8803eec74c398dba9c987e013440911fb1) Merge branch 'master' into us/1035-middleware - [`1b2eb10`](https://github.com/wiremock/WireMock.Net/commit/1b2eb1074b1fc93168b64f1e186bbc92099e602a) WireMock.Net.Middleware.Tests - [`ecb329d`](https://github.com/wiremock/WireMock.Net/commit/ecb329d11e12dc2474943b2dd1756b8a00366034) . - [`a3bae4b`](https://github.com/wiremock/WireMock.Net/commit/a3bae4b27cc088166efcecb168171de7ce311eef) X-WireMock-Response-Delay ### 📊 Changes **23 files changed** (+641 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ci.yml` (+2 -0) 📝 `WireMock.Net Solution.sln` (+29 -1) 📝 `azure-pipelines-ci.yml` (+1 -0) ➕ `examples/WireMock.Net.WebApplication/Program.cs` (+56 -0) ➕ `examples/WireMock.Net.WebApplication/Properties/launchSettings.json` (+41 -0) ➕ `examples/WireMock.Net.WebApplication/WeatherForecast.cs` (+4 -0) ➕ `examples/WireMock.Net.WebApplication/WireMock.Net.WebApplication.csproj` (+13 -0) ➕ `examples/WireMock.Net.WebApplication/appsettings.Development.json` (+8 -0) ➕ `examples/WireMock.Net.WebApplication/appsettings.json` (+9 -0) ➕ `src/WireMock.Net.AspNetCore.Middleware/AppConstants.cs` (+9 -0) ➕ `src/WireMock.Net.AspNetCore.Middleware/HttpDelegatingHandler/WireMockDelegationHandler.cs` (+72 -0) ➕ `src/WireMock.Net.AspNetCore.Middleware/HttpDelegatingHandler/WireMockDelegationHandlerSettings.cs` (+8 -0) ➕ `src/WireMock.Net.AspNetCore.Middleware/ServiceCollectionExtensions.cs` (+52 -0) ➕ `src/WireMock.Net.AspNetCore.Middleware/WireMock.Net.AspNetCore.Middleware.csproj` (+49 -0) ➕ `src/WireMock.Net.AspNetCore.Middleware/WireMockBackgroundService.cs` (+39 -0) ➕ `src/WireMock.Net.AspNetCore.Middleware/WireMockServerInstance.cs` (+49 -0) ➕ `test/WireMock.Net.Middleware.Tests/CustomWebApplicationFactory.cs` (+25 -0) ➕ `test/WireMock.Net.Middleware.Tests/IntegrationTests.cs` (+49 -0) ➕ `test/WireMock.Net.Middleware.Tests/WireMock.Net.Middleware.Tests.csproj` (+43 -0) ➕ `test/WireMock.Net.TestWebApplication/Program.cs` (+49 -0) _...and 3 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 09:19:06 +01:00
adam closed this issue 2025-12-29 09:19:06 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/WireMock.Net#1267