Project rename: Correo.SmtpClient => Correo.NetSmtpClient
parent
d623c9c7a4
commit
ccebc134a4
|
@ -24,7 +24,7 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Correo.PublishedLanguage",
|
|||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Correo.Domain", "src\Correo.Domain\Correo.Domain.csproj", "{A2D2694C-AB68-49B0-B4B0-94BBFF48C043}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Correo.SmtpClient", "src\Correo.SmtpClient\Correo.SmtpClient.csproj", "{76793477-8219-4FFB-AA08-3F2224EC4968}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Correo.NetSmtpClient", "src\Correo.NetSmtpClient\Correo.NetSmtpClient.csproj", "{76793477-8219-4FFB-AA08-3F2224EC4968}"
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Correo.Abstractions", "src\Correo.Abstractions\Correo.Abstractions.csproj", "{ED8048DC-8509-4085-97F0-F9D9A59A689A}"
|
||||
EndProject
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
using Correo.Abstractions;
|
||||
using Correo.SmtpClient.Models;
|
||||
using Correo.NetSmtpClient.Models;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
namespace Correo.SmtpClient
|
||||
namespace Correo.NetSmtpClient
|
||||
{
|
||||
public static class DependencyInjectionExtensions
|
||||
{
|
|
@ -2,7 +2,7 @@
|
|||
using System.Collections.Generic;
|
||||
using System.Net.Mail;
|
||||
|
||||
namespace Correo.SmtpClient.Extensions
|
||||
namespace Correo.NetSmtpClient.Extensions
|
||||
{
|
||||
internal static class ModelExtensions
|
||||
{
|
|
@ -1,4 +1,4 @@
|
|||
namespace Correo.SmtpClient.Models
|
||||
namespace Correo.NetSmtpClient.Models
|
||||
{
|
||||
public record SmtpClientOptions
|
||||
{
|
|
@ -1,7 +1,7 @@
|
|||
using Correo.Abstractions;
|
||||
using Correo.Abstractions.Extensions;
|
||||
using Correo.SmtpClient.Extensions;
|
||||
using Correo.SmtpClient.Models;
|
||||
using Correo.NetSmtpClient.Extensions;
|
||||
using Correo.NetSmtpClient.Models;
|
||||
using Microsoft.Extensions.Logging;
|
||||
using Microsoft.Extensions.Options;
|
||||
using System;
|
||||
|
@ -9,7 +9,7 @@ using System.Net;
|
|||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Correo.SmtpClient
|
||||
namespace Correo.NetSmtpClient
|
||||
{
|
||||
internal class NetSmtpClient : IMailer, IDisposable
|
||||
{
|
|
@ -17,7 +17,7 @@
|
|||
<ItemGroup>
|
||||
<ProjectReference Include="..\Correo.Application\Correo.Application.csproj" />
|
||||
<ProjectReference Include="..\Correo.MailKit\Correo.MailKit.csproj" />
|
||||
<ProjectReference Include="..\Correo.SmtpClient\Correo.SmtpClient.csproj" />
|
||||
<ProjectReference Include="..\Correo.NetSmtpClient\Correo.NetSmtpClient.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
using Correo.MailKit;
|
||||
using Correo.SmtpClient;
|
||||
using Correo.NetSmtpClient;
|
||||
using Microsoft.Extensions.Configuration;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
using System;
|
||||
|
|
Loading…
Reference in New Issue