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);