b7284bc3a4
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>
6 lines
133 B
C#
6 lines
133 B
C#
public class VersionInfo
|
|
{
|
|
public string Version { get; set; } = "unknown";
|
|
public string Built { get; set; } = "unknown";
|
|
}
|