mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-01-18 09:27:08 +01:00
* matcher
* wip
* fix
* <VersionPrefix>1.4.0</VersionPrefix>
* .
* x
* ?
* netstandard2.1
* {}
* test
* Fix: Assembly with same name is already loaded
* _format file
* AssemblyFile = $"WireMock.CodeHelper.Class{Guid.NewGuid()}"
* AssemblyFile = $"WireMock.CodeHelper.Class{Guid.NewGuid().ToString().Replace("-", "")}"
* GC
* x
* remove load ex
* ret
* readme
* no GC
* GetImplementationTypeByInterface
* ``
* PluginLoader
* type
11 lines
293 B
C#
11 lines
293 B
C#
namespace WireMock.Matchers
|
|
{
|
|
/// <summary>
|
|
/// CSharpCode / CS-Script Matcher
|
|
/// </summary>
|
|
/// <inheritdoc cref="IObjectMatcher"/>
|
|
/// <inheritdoc cref="IStringMatcher"/>
|
|
public interface ICSharpCodeMatcher : IObjectMatcher, IStringMatcher
|
|
{
|
|
}
|
|
} |