From 824f6851a0ca9d4b265b40182fbebfec12cefed7 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 26 Jun 2026 18:06:47 +0900 Subject: [PATCH] =?UTF-8?q?=ED=91=B8=ED=84=B0:=20Path.Combine=20=EB=84=A4?= =?UTF-8?q?=EC=9E=84=EC=8A=A4=ED=8E=98=EC=9D=B4=EC=8A=A4=20=EB=AA=85?= =?UTF-8?q?=EC=8B=9C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TaxBaik.Web/Pages/Shared/_Footer.cshtml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TaxBaik.Web/Pages/Shared/_Footer.cshtml b/TaxBaik.Web/Pages/Shared/_Footer.cshtml index af0c97b..5e27efd 100644 --- a/TaxBaik.Web/Pages/Shared/_Footer.cshtml +++ b/TaxBaik.Web/Pages/Shared/_Footer.cshtml @@ -2,7 +2,7 @@ string versionText = "unknown"; try { - var versionPath = Path.Combine(AppContext.BaseDirectory, "wwwroot", "version.txt"); + var versionPath = System.IO.Path.Combine(AppContext.BaseDirectory, "wwwroot", "version.txt"); if (System.IO.File.Exists(versionPath)) { var lines = System.IO.File.ReadAllLines(versionPath);