From 91ee129a1a8f0e51c3d00d195db0ddb7b9890813 Mon Sep 17 00:00:00 2001 From: michael-bailey Date: Mon, 17 Mar 2025 14:03:08 +0000 Subject: [PATCH] Removed redundant Identity dependencies, may be added later --- FileStorageService.www/Areas/Identity/Pages/_ViewStart.cshtml | 3 --- FileStorageService.www/Data/ApplicationDbContext.cs | 3 +-- FileStorageService.www/FileStorageService.www.csproj | 2 -- 3 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 FileStorageService.www/Areas/Identity/Pages/_ViewStart.cshtml diff --git a/FileStorageService.www/Areas/Identity/Pages/_ViewStart.cshtml b/FileStorageService.www/Areas/Identity/Pages/_ViewStart.cshtml deleted file mode 100644 index 99ed17f..0000000 --- a/FileStorageService.www/Areas/Identity/Pages/_ViewStart.cshtml +++ /dev/null @@ -1,3 +0,0 @@ -@{ - Layout = "/Views/Shared/_Layout.cshtml"; -} \ No newline at end of file diff --git a/FileStorageService.www/Data/ApplicationDbContext.cs b/FileStorageService.www/Data/ApplicationDbContext.cs index b59155a..c902a5f 100644 --- a/FileStorageService.www/Data/ApplicationDbContext.cs +++ b/FileStorageService.www/Data/ApplicationDbContext.cs @@ -1,5 +1,4 @@ -using Microsoft.AspNetCore.Identity.EntityFrameworkCore; -using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; namespace FileStorageService.www.Data; diff --git a/FileStorageService.www/FileStorageService.www.csproj b/FileStorageService.www/FileStorageService.www.csproj index 225057e..2459e37 100644 --- a/FileStorageService.www/FileStorageService.www.csproj +++ b/FileStorageService.www/FileStorageService.www.csproj @@ -13,8 +13,6 @@ - -