Skip to content

Commit

Permalink
2.x.x (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
StefH committed Oct 22, 2019
1 parent 3250604 commit 84ad5a9
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
3 changes: 0 additions & 3 deletions src/WireMock.Net.StandAlone/StandAloneApp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,13 @@ namespace WireMock.Net.StandAlone
/// <summary>
/// The StandAloneApp
/// </summary>
[Obsolete("This class will be removed in version 1.1.0")]
public static class StandAloneApp
{
/// <summary>
/// Start WireMock.Net standalone Server based on the FluentMockServerSettings.
/// </summary>
/// <param name="settings">The FluentMockServerSettings</param>
[PublicAPI]
[Obsolete("Will be replaced by WireMockServer.Start(settings) in version 1.1.0")]
public static FluentMockServer Start([NotNull] IFluentMockServerSettings settings)
{
Check.NotNull(settings, nameof(settings));
Expand All @@ -37,7 +35,6 @@ public static FluentMockServer Start([NotNull] IFluentMockServerSettings setting
/// <param name="args">The commandline arguments</param>
/// <param name="logger">The logger</param>
[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)
{
Check.NotNull(args, nameof(args));
Expand Down
2 changes: 1 addition & 1 deletion src/WireMock.Net/Server/FluentMockServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ namespace WireMock.Server
/// <summary>
/// The fluent mock server.
/// </summary>
[Obsolete("Will be replaced by WireMockServer in version 1.1.0")]
[Obsolete("Will be replaced by WireMockServer in version 2.x.x")]
public partial class FluentMockServer : IDisposable
{
private const int ServerStartDelayInMs = 100;
Expand Down
2 changes: 1 addition & 1 deletion src/WireMock.Net/Settings/FluentMockServerSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace WireMock.Settings
/// <summary>
/// FluentMockServerSettings
/// </summary>
[Obsolete("Will be replaced by WireMockServerSettings in version 1.1.0")]
[Obsolete("Will be replaced by WireMockServerSettings in version 2.x.x")]
public class FluentMockServerSettings : IFluentMockServerSettings
{
/// <inheritdoc cref="IFluentMockServerSettings.Port"/>
Expand Down
2 changes: 1 addition & 1 deletion src/WireMock.Net/Settings/IFluentMockServerSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace WireMock.Settings
/// <summary>
/// IFluentMockServerSettings
/// </summary>
[Obsolete("This interface will be removed and replaced by the class WireMockServerSettings in version 1.1.0")]
[Obsolete("This interface will be removed and replaced by the class WireMockServerSettings in version 2.x.x")]
public interface IFluentMockServerSettings
{
/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion src/WireMock.Net/Settings/IProxyAndRecordSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace WireMock.Settings
/// <summary>
/// IProxyAndRecordSettings
/// </summary>
[Obsolete("This interface will be removed and replaced by the class ProxyAndRecordSettings in version 1.1.0")]
[Obsolete("This interface will be removed and replaced by the class ProxyAndRecordSettings in version 2.x.x")]
public interface IProxyAndRecordSettings
{
/// <summary>
Expand Down

0 comments on commit 84ad5a9

Please sign in to comment.