* post: stub out initial post with outline * fix: add title attribute to lead in feed and add disc to list styles in posts * fix: apply style to artcile * post: work on rough draft * post: work on rough draft * post: work on rought draft * post: work on rought draft * post: more work on rough draft * post: finish post * chore: cleanup usings * chore: run dotnet format * docs: testing README * docs: update README.md
27 lines
820 B
C#
27 lines
820 B
C#
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;
|
|
|
|
global using FluentAssertions;
|
|
|
|
global using Microsoft.AspNetCore.Hosting;
|
|
global using Microsoft.AspNetCore.Hosting.Server;
|
|
global using Microsoft.AspNetCore.Hosting.Server.Features;
|
|
global using Microsoft.AspNetCore.Http.Features;
|
|
global using Microsoft.AspNetCore.Mvc.Testing;
|
|
global using Microsoft.AspNetCore.TestHost;
|
|
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 Moq;
|
|
|
|
global using NUnit.Framework;
|