From 8ad324227aeb46d4aca96c7ab2ebe6c34e635984 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Sun, 6 Aug 2023 13:55:39 +0100 Subject: [PATCH] refactor: remove localization --- OliverBooth/Program.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/OliverBooth/Program.cs b/OliverBooth/Program.cs index abfdf24..2a9bff7 100644 --- a/OliverBooth/Program.cs +++ b/OliverBooth/Program.cs @@ -1,6 +1,5 @@ WebApplicationBuilder builder = WebApplication.CreateBuilder(args); -builder.Services.AddLocalization(options => options.ResourcesPath = "Resources"); builder.Services.AddRazorPages(); builder.Services.AddControllersWithViews(); builder.Services.AddRouting(options => options.LowercaseUrls = true);