mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-06-05 05:13:05 +02:00
2a19b4491f
* WireMock.Net.Testcontainers: implement watching the static mapping files + folder for changes * ReloadStaticMappings * fix * . * . * . * . * . * . * . * CopyAsync * <VersionPrefix>1.6.7-preview-02</VersionPrefix> * <VersionPrefix>1.6.7-preview-03</VersionPrefix>
16 lines
550 B
C#
16 lines
550 B
C#
// Copyright © WireMock.Net
|
|
|
|
using System.Collections.Generic;
|
|
using System.Runtime.InteropServices;
|
|
using WireMock.Net.Testcontainers.Models;
|
|
|
|
namespace WireMock.Net.Testcontainers.Utils;
|
|
|
|
internal static class ContainerInfoProvider
|
|
{
|
|
public static readonly Dictionary<OSPlatform, ContainerInfo> Info = new()
|
|
{
|
|
{ OSPlatform.Linux, new ContainerInfo("sheyenrath/wiremock.net-alpine", "/app/__admin/mappings") },
|
|
{ OSPlatform.Windows, new ContainerInfo("sheyenrath/wiremock.net-windows", @"c:\app\__admin\mappings") }
|
|
};
|
|
} |