Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.

Commit 181313e

Browse files
committed
Fix GlobalUsings
1 parent 30b3fb6 commit 181313e

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/NET6CustomLibrary/GlobalUsings.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,32 @@
1010
global using System.Threading;
1111
global using System.Threading.Tasks;
1212
global using EFCoreGeneric.Infrastructure.Interfaces;
13+
global using MailKit.Net.Smtp;
14+
global using MailKit.Security;
1315
global using Microsoft.AspNetCore.Builder;
1416
global using Microsoft.AspNetCore.Diagnostics.HealthChecks;
1517
global using Microsoft.AspNetCore.Http;
18+
global using Microsoft.AspNetCore.Identity.UI.Services;
1619
global using Microsoft.AspNetCore.Routing;
1720
global using Microsoft.EntityFrameworkCore;
21+
global using Microsoft.Extensions.Configuration;
1822
global using Microsoft.Extensions.DependencyInjection;
1923
global using Microsoft.Extensions.Diagnostics.HealthChecks;
2024
global using Microsoft.Extensions.Hosting;
2125
global using Microsoft.Extensions.Logging;
26+
global using Microsoft.Extensions.Options;
2227
global using Microsoft.OpenApi.Any;
2328
global using Microsoft.OpenApi.Models;
29+
global using MimeKit;
2430
global using MySqlConnector;
2531
global using NET6CustomLibrary.DateTime.Converters;
2632
global using NET6CustomLibrary.DateTime.TypeConverters;
2733
global using NET6CustomLibrary.EFCore.Core;
2834
global using NET6CustomLibrary.EFCore.Core.Interfaces;
2935
global using NET6CustomLibrary.EFCore.Infrastructure.Interfaces;
3036
global using NET6CustomLibrary.EFCore.Infrastructure.Repository;
37+
global using NET6CustomLibrary.MailKit.Options;
38+
global using NET6CustomLibrary.MailKit.Services;
3139
global using NET6CustomLibrary.RabbitMQ.Abstractions;
3240
global using NET6CustomLibrary.Serilog.Services;
3341
global using RabbitMQ.Client;

0 commit comments

Comments
 (0)