chore: cleanup usings and run dotnet format

This commit is contained in:
Stevan Freeborn
2024-04-12 19:33:56 -05:00
parent 95d4888876
commit ba65401c88
9 changed files with 27 additions and 30 deletions
+4
View File
@@ -1,5 +1,9 @@
global using System.IO.Abstractions;
global using System.ServiceModel.Syndication;
global using System.Text;
global using System.Text.Json;
global using System.Xml;
global using System.Xml.Linq;
global using Blog.Components;
global using Blog.Posts;
-5
View File
@@ -1,8 +1,3 @@
using System.ServiceModel.Syndication;
using System.Text;
using System.Xml;
using System.Xml.Linq;
var builder = WebApplication.CreateBuilder(args);
builder.Services.ConfigureOptions<FilePostServiceOptionsSetup>();
-5
View File
@@ -1,8 +1,3 @@
using System.ServiceModel.Syndication;
using System.Text;
using System.Xml;
using System.Xml.Linq;
namespace Blog.Tests.EndToEnd;
[TestFixture]
+4 -1
View File
@@ -1,5 +1,8 @@
global using System.IO.Abstractions;
global using System.Net;
global using System.ServiceModel.Syndication;
global using System.Text;
global using System.Xml;
global using Blog.Posts;
@@ -10,10 +13,10 @@ global using Microsoft.AspNetCore.Hosting.Server;
global using Microsoft.AspNetCore.Mvc.Testing;
global using Microsoft.Extensions.DependencyInjection;
global using Microsoft.Extensions.Hosting;
global using Microsoft.Extensions.Logging;
global using Microsoft.Extensions.Options;
global using Microsoft.Playwright;
global using Microsoft.Playwright.NUnit;
global using Microsoft.Extensions.Logging;
global using Moq;