refactor: move WebHostBuilderExtensions to common lib

This commit is contained in:
Oliver Booth 2024-03-02 03:19:40 +00:00
parent 9ceec5ca1a
commit b24e24f3f7
Signed by: oliverbooth
GPG Key ID: E60B570D1B7557B5
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,7 @@
using System.Security.Cryptography.X509Certificates; using System.Security.Cryptography.X509Certificates;
using Microsoft.AspNetCore.Hosting;
namespace OliverBooth.Extensions; namespace OliverBooth.Common.Extensions;
/// <summary> /// <summary>
/// Extension methods for <see cref="IWebHostBuilder" />. /// Extension methods for <see cref="IWebHostBuilder" />.

View File

@ -7,7 +7,6 @@ using Markdig;
using OliverBooth.Common.Extensions; using OliverBooth.Common.Extensions;
using OliverBooth.Common.Markdown.Template; using OliverBooth.Common.Markdown.Template;
using OliverBooth.Common.Services; using OliverBooth.Common.Services;
using OliverBooth.Extensions;
using OliverBooth.Markdown.Timestamp; using OliverBooth.Markdown.Timestamp;
using OliverBooth.Services; using OliverBooth.Services;
using Serilog; using Serilog;