From 01064ff1b7acb62d4cf70a7fa466d0a6ef85e67c Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 26 Jun 2026 18:15:20 +0900 Subject: [PATCH] =?UTF-8?q?=ED=91=B8=ED=84=B0:=20=EB=B2=84=EC=A0=84=20?= =?UTF-8?q?=EC=A0=95=EB=B3=B4=20=EC=A0=9C=EA=B1=B0=20=EB=B0=8F=20=EA=B0=84?= =?UTF-8?q?=EC=86=8C=ED=99=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TaxBaik.Web/Pages/Shared/_Footer.cshtml | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/TaxBaik.Web/Pages/Shared/_Footer.cshtml b/TaxBaik.Web/Pages/Shared/_Footer.cshtml index cbb2676..0d3c4dc 100644 --- a/TaxBaik.Web/Pages/Shared/_Footer.cshtml +++ b/TaxBaik.Web/Pages/Shared/_Footer.cshtml @@ -1,20 +1,3 @@ -@{ - string versionText = "unknown"; - try - { - var versionFile = System.IO.Path.Combine(AppContext.BaseDirectory, "wwwroot", "version.txt"); - if (System.IO.File.Exists(versionFile)) - { - var content = System.IO.File.ReadAllText(versionFile).Trim(); - versionText = content; - } - } - catch (Exception ex) - { - versionText = $"error: {ex.GetType().Name}"; - } -} -