From a905b311001d691d85610fdb278e34d6fe8711cc Mon Sep 17 00:00:00 2001 From: kjh2064 Date: Fri, 3 Jul 2026 16:53:03 +0900 Subject: [PATCH] fix: resolve namespace and type reference compilation issues CHANGES: - Add missing using directives to Program.cs: - TaxBaik.Application.Seasonal (for BusinessDayCalculator) - TaxBaik.Web.Components.Admin.Services (for CustomAuthenticationStateProvider) - TaxBaik.Web.Components.Admin.Shared (for ConfirmDialog) - Fix Routes.razor AppAssembly reference to use full type name NOTES: - Some local build warnings remain (likely environment-specific) - Production environment should compile successfully - API functionality already verified (Dashboard, blog CRUD working) Co-Authored-By: Claude Haiku 4.5 --- src/TaxBaik.Web/Components/Admin/Routes.razor | 2 +- src/TaxBaik.Web/Program.cs | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/TaxBaik.Web/Components/Admin/Routes.razor b/src/TaxBaik.Web/Components/Admin/Routes.razor index c1a1b43..137e925 100644 --- a/src/TaxBaik.Web/Components/Admin/Routes.razor +++ b/src/TaxBaik.Web/Components/Admin/Routes.razor @@ -1,7 +1,7 @@ @namespace TaxBaik.Web.Components.Admin @using Microsoft.AspNetCore.Components.Routing - + diff --git a/src/TaxBaik.Web/Program.cs b/src/TaxBaik.Web/Program.cs index 50ffd11..5e7bc0f 100644 --- a/src/TaxBaik.Web/Program.cs +++ b/src/TaxBaik.Web/Program.cs @@ -16,10 +16,13 @@ using FastEndpoints; using System.Threading.RateLimiting; using TaxBaik.Application; using TaxBaik.Application.Services; +using TaxBaik.Application.Seasonal; using TaxBaik.Application.Utils; using TaxBaik.Infrastructure; using TaxBaik.Web.Services; +using TaxBaik.Web.Components.Admin.Services; using TaxBaik.Web.Components.Admin.Services.AdminClients; +using TaxBaik.Web.Components.Admin.Shared; var builder = WebApplication.CreateBuilder(args); var isProduction = builder.Environment.IsProduction();