From ddb7a3c1f233587191dd8779e93d2379bc626033 Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Fri, 4 Aug 2023 12:57:35 +0100 Subject: [PATCH] refactor: rename root namespace --- oliverbooth.dev/Pages/Error.cshtml.cs | 2 +- oliverbooth.dev/Pages/Index.cshtml.cs | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/oliverbooth.dev/Pages/Error.cshtml.cs b/oliverbooth.dev/Pages/Error.cshtml.cs index 80eb8d6..699bf09 100644 --- a/oliverbooth.dev/Pages/Error.cshtml.cs +++ b/oliverbooth.dev/Pages/Error.cshtml.cs @@ -2,7 +2,7 @@ using System.Diagnostics; using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.RazorPages; -namespace oliverbooth.dev.Pages; +namespace OliverBooth.Pages; [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)] [IgnoreAntiforgeryToken] diff --git a/oliverbooth.dev/Pages/Index.cshtml.cs b/oliverbooth.dev/Pages/Index.cshtml.cs index a6a0501..86187a5 100644 --- a/oliverbooth.dev/Pages/Index.cshtml.cs +++ b/oliverbooth.dev/Pages/Index.cshtml.cs @@ -1,7 +1,6 @@ -using Microsoft.AspNetCore.Mvc; -using Microsoft.AspNetCore.Mvc.RazorPages; +using Microsoft.AspNetCore.Mvc.RazorPages; -namespace oliverbooth.dev.Pages; +namespace OliverBooth.Pages; public class IndexModel : PageModel {