mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-05-30 03:30:42 +02:00
Mark some classes and methods obsolete for version 1.1.0 (#335)
* Obsolete * StandAloneApp - obsolete * obs * make Interface obsolete
This commit is contained in:
@@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1'">
|
<ItemGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.1'">
|
||||||
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.4" />
|
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.4" />
|
||||||
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.5" />
|
<PackageReference Include="Microsoft.AspNetCore.All" />
|
||||||
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
<PackageReference Include="Newtonsoft.Json" Version="11.0.2" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|||||||
@@ -1,15 +1,17 @@
|
|||||||
using System.Linq;
|
using System;
|
||||||
|
using System.Linq;
|
||||||
|
using JetBrains.Annotations;
|
||||||
|
using WireMock.Logging;
|
||||||
using WireMock.Server;
|
using WireMock.Server;
|
||||||
using WireMock.Settings;
|
using WireMock.Settings;
|
||||||
using WireMock.Validation;
|
using WireMock.Validation;
|
||||||
using JetBrains.Annotations;
|
|
||||||
using WireMock.Logging;
|
|
||||||
|
|
||||||
namespace WireMock.Net.StandAlone
|
namespace WireMock.Net.StandAlone
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The StandAloneApp
|
/// The StandAloneApp
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Obsolete("This class will be removed in version 1.1.0")]
|
||||||
public static class StandAloneApp
|
public static class StandAloneApp
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -17,6 +19,7 @@ namespace WireMock.Net.StandAlone
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="settings">The FluentMockServerSettings</param>
|
/// <param name="settings">The FluentMockServerSettings</param>
|
||||||
[PublicAPI]
|
[PublicAPI]
|
||||||
|
[Obsolete("Will be replaced by WireMockServer.Start(settings) in version 1.1.0")]
|
||||||
public static FluentMockServer Start([NotNull] IFluentMockServerSettings settings)
|
public static FluentMockServer Start([NotNull] IFluentMockServerSettings settings)
|
||||||
{
|
{
|
||||||
Check.NotNull(settings, nameof(settings));
|
Check.NotNull(settings, nameof(settings));
|
||||||
@@ -34,6 +37,7 @@ namespace WireMock.Net.StandAlone
|
|||||||
/// <param name="args">The commandline arguments</param>
|
/// <param name="args">The commandline arguments</param>
|
||||||
/// <param name="logger">The logger</param>
|
/// <param name="logger">The logger</param>
|
||||||
[PublicAPI]
|
[PublicAPI]
|
||||||
|
[Obsolete("Will be replaced by `var settings = WireMockServerSettingsParser.ParseArguments(args, logger); WireMockServer.Start(settings);` in version 1.1.0")]
|
||||||
public static FluentMockServer Start([NotNull] string[] args, [CanBeNull] IWireMockLogger logger = null)
|
public static FluentMockServer Start([NotNull] string[] args, [CanBeNull] IWireMockLogger logger = null)
|
||||||
{
|
{
|
||||||
Check.NotNull(args, nameof(args));
|
Check.NotNull(args, nameof(args));
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ namespace WireMock.Server
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// The fluent mock server.
|
/// The fluent mock server.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Obsolete("Will be replaced by WireMockServer in version 1.1.0")]
|
||||||
public partial class FluentMockServer : IDisposable
|
public partial class FluentMockServer : IDisposable
|
||||||
{
|
{
|
||||||
private const int ServerStartDelayInMs = 100;
|
private const int ServerStartDelayInMs = 100;
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ namespace WireMock.Settings
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// FluentMockServerSettings
|
/// FluentMockServerSettings
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Obsolete("Will be replaced by WireMockServerSettings in version 1.1.0")]
|
||||||
public class FluentMockServerSettings : IFluentMockServerSettings
|
public class FluentMockServerSettings : IFluentMockServerSettings
|
||||||
{
|
{
|
||||||
/// <inheritdoc cref="IFluentMockServerSettings.Port"/>
|
/// <inheritdoc cref="IFluentMockServerSettings.Port"/>
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ namespace WireMock.Settings
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// IFluentMockServerSettings
|
/// IFluentMockServerSettings
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Obsolete("This interface will be removed and replaced by the class WireMockServerSettings in version 1.1.0")]
|
||||||
public interface IFluentMockServerSettings
|
public interface IFluentMockServerSettings
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
@@ -1,10 +1,13 @@
|
|||||||
using JetBrains.Annotations;
|
using System;
|
||||||
|
|
||||||
|
using JetBrains.Annotations;
|
||||||
|
|
||||||
namespace WireMock.Settings
|
namespace WireMock.Settings
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// IProxyAndRecordSettings
|
/// IProxyAndRecordSettings
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Obsolete("This interface will be removed and replaced by the class ProxyAndRecordSettings in version 1.1.0")]
|
||||||
public interface IProxyAndRecordSettings
|
public interface IProxyAndRecordSettings
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user