Skip to content

Commit

Permalink
chore(CI) Fix bad merge breaking build.
Browse files Browse the repository at this point in the history
  • Loading branch information
rnwood committed Jul 10, 2022
1 parent d3ea366 commit 0ca1b0a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Rnwood.Smtp4dev/ApiModel/MessageEntitySummary.cs
@@ -1,10 +1,10 @@
using Newtonsoft.Json;
using System;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using MimeKit;
using System.Collections;
using System.Text.Json.Serialization;

namespace Rnwood.Smtp4dev.ApiModel
{
Expand Down
1 change: 0 additions & 1 deletion Rnwood.Smtp4dev/Program.cs
Expand Up @@ -17,7 +17,6 @@
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Mono.Options;
using Newtonsoft.Json.Linq;
using Rnwood.Smtp4dev.Server;
using Rnwood.Smtp4dev.Service;
using Serilog;
Expand Down
4 changes: 2 additions & 2 deletions Rnwood.Smtp4dev/Server/RelayOptions.cs
@@ -1,5 +1,6 @@
using Ardalis.GuardClauses;
using MailKit.Security;
using System.Text.Json.Serialization;

namespace Rnwood.Smtp4dev.Server
{
Expand Down Expand Up @@ -30,8 +31,7 @@ public int SmtpPort

public string Password { get; set; } = "";

[Newtonsoft.Json.JsonIgnore]
[System.Text.Json.Serialization.JsonIgnore]
[JsonIgnore]
public string AutomaticEmailsString
{
get => string.Join(",", AutomaticEmails);
Expand Down

0 comments on commit 0ca1b0a

Please sign in to comment.