VersionInfo 네임스페이스 제거: 컴파일 오류 해결
TaxBaik CI/CD / build-and-deploy (push) Failing after 1m8s

문제:
- VersionInfo.cs가 namespace를 가지고 있음
- Program.cs (top-level statements)에서 직접 접근 불가능
- 빌드 시 "The type or namespace name 'VersionInfo' could not be found" 오류

해결:
- TaxBaik.Web/VersionInfo.cs에서 namespace 제거
- TaxBaik.Admin/VersionInfo.cs에서 namespace 제거
- Program.cs에서 직접 접근 가능하도록 변경

결과:
- 빌드 성공 (오류 0개, 경고만 있음)
- 경고는 Npgsql 보안 취약성 (이미 알려진 것)

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-06-26 17:20:19 +09:00
parent 4fbd8b1052
commit b7284bc3a4
2 changed files with 0 additions and 4 deletions
-2
View File
@@ -1,5 +1,3 @@
namespace TaxBaik.Admin;
public class VersionInfo public class VersionInfo
{ {
public string Version { get; set; } = "unknown"; public string Version { get; set; } = "unknown";
-2
View File
@@ -1,5 +1,3 @@
namespace TaxBaik.Web;
public class VersionInfo public class VersionInfo
{ {
public string Version { get; set; } = "unknown"; public string Version { get; set; } = "unknown";