[PR #548] [MERGED] Move CSharpCodeMatcher to a new project #966

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

📋 Pull Request Information

Original PR: https://github.com/wiremock/WireMock.Net/pull/548
Author: @StefH
Created: 12/3/2020
Status: Merged
Merged: 1/12/2021
Merged by: @StefH

Base: masterHead: plugin_matcher_csharp


📝 Commits (10+)

📊 Changes

16 files changed (+274 additions, -63 deletions)

View changed files

📝 Directory.Build.props (+1 -1)
📝 README.md (+2 -1)
📝 WireMock.Net Solution.sln (+7 -0)
📝 src/WireMock.Net.Matchers.CSharpCode/Matchers/CSharpCodeMatcher.cs (+31 -14)
src/WireMock.Net.Matchers.CSharpCode/Properties/AssemblyInfo.cs (+6 -0)
src/WireMock.Net.Matchers.CSharpCode/WireMock.Net.Matchers.CSharpCode.csproj (+60 -0)
src/WireMock.Net/Matchers/ICSharpCodeMatcher.cs (+11 -0)
src/WireMock.Net/Plugin/PluginLoader.cs (+57 -0)
📝 src/WireMock.Net/Properties/AssemblyInfo.cs (+7 -6)
📝 src/WireMock.Net/Serialization/MatcherMapper.cs (+2 -1)
📝 src/WireMock.Net/WireMock.Net.csproj (+4 -36)
test/WireMock.Net.Tests/Plugin/PluginLoaderTests.cs (+35 -0)
📝 test/WireMock.Net.Tests/Serialization/MatcherModelMapperTests.cs (+44 -0)
📝 test/WireMock.Net.Tests/WireMock.Net.Tests.csproj (+2 -1)
📝 test/WireMock.Net.Tests/WireMockAdminApiTests.cs (+4 -2)
📝 test/WireMock.Net.Tests/WireMockServerTests.cs (+1 -1)

📄 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/548 **Author:** [@StefH](https://github.com/StefH) **Created:** 12/3/2020 **Status:** ✅ Merged **Merged:** 1/12/2021 **Merged by:** [@StefH](https://github.com/StefH) **Base:** `master` ← **Head:** `plugin_matcher_csharp` --- ### 📝 Commits (10+) - [`1a66223`](https://github.com/wiremock/WireMock.Net/commit/1a662230a4c77f6ce8b36d057a02d92ee007e0a4) matcher - [`a28bc0a`](https://github.com/wiremock/WireMock.Net/commit/a28bc0aa8a5757691475ae921c96af65a36495a9) Merge branch 'master' into plugin_matcher_csharp - [`3deb393`](https://github.com/wiremock/WireMock.Net/commit/3deb393e54b4961f1f3c61a97d66cbcf74168cdd) wip - [`2b4f4c8`](https://github.com/wiremock/WireMock.Net/commit/2b4f4c84d2c6b5a54ec1f6f344bd428bc02f5452) fix - [`990516f`](https://github.com/wiremock/WireMock.Net/commit/990516f8e6a1e722be6929ebd1264bbdc0db302f) <VersionPrefix>1.4.0</VersionPrefix> - [`7f4f14a`](https://github.com/wiremock/WireMock.Net/commit/7f4f14a91275fe2a391f5f6db17ee38fbaea8d37) . - [`e90fbcd`](https://github.com/wiremock/WireMock.Net/commit/e90fbcd46523f9b308375d15ea0bbe948180359f) x - [`841f31f`](https://github.com/wiremock/WireMock.Net/commit/841f31fb8c9847578dbaa30ddc4e43ffa21b5cd1) ? - [`1232679`](https://github.com/wiremock/WireMock.Net/commit/123267964000c2415af369bbebd817d2b6853651) netstandard2.1 - [`00ca01b`](https://github.com/wiremock/WireMock.Net/commit/00ca01bb89265b1b517c71927fb1209cfed4ba29) {} ### 📊 Changes **16 files changed** (+274 additions, -63 deletions) <details> <summary>View changed files</summary> 📝 `Directory.Build.props` (+1 -1) 📝 `README.md` (+2 -1) 📝 `WireMock.Net Solution.sln` (+7 -0) 📝 `src/WireMock.Net.Matchers.CSharpCode/Matchers/CSharpCodeMatcher.cs` (+31 -14) ➕ `src/WireMock.Net.Matchers.CSharpCode/Properties/AssemblyInfo.cs` (+6 -0) ➕ `src/WireMock.Net.Matchers.CSharpCode/WireMock.Net.Matchers.CSharpCode.csproj` (+60 -0) ➕ `src/WireMock.Net/Matchers/ICSharpCodeMatcher.cs` (+11 -0) ➕ `src/WireMock.Net/Plugin/PluginLoader.cs` (+57 -0) 📝 `src/WireMock.Net/Properties/AssemblyInfo.cs` (+7 -6) 📝 `src/WireMock.Net/Serialization/MatcherMapper.cs` (+2 -1) 📝 `src/WireMock.Net/WireMock.Net.csproj` (+4 -36) ➕ `test/WireMock.Net.Tests/Plugin/PluginLoaderTests.cs` (+35 -0) 📝 `test/WireMock.Net.Tests/Serialization/MatcherModelMapperTests.cs` (+44 -0) 📝 `test/WireMock.Net.Tests/WireMock.Net.Tests.csproj` (+2 -1) 📝 `test/WireMock.Net.Tests/WireMockAdminApiTests.cs` (+4 -2) 📝 `test/WireMock.Net.Tests/WireMockServerTests.cs` (+1 -1) </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 08:34:09 +01:00
adam closed this issue 2025-12-29 08:34:09 +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#966