ExcelKvPoC 빌드 실패: IStorageWrapper SetAsync(row,col) 미구현 #1

Closed
opened 2026-01-08 17:37:36 +09:00 by lectom · 0 comments
Owner

현상

dotnet build ExcelKvSystem.sln 수행 시 ExcelKvPoC 프로젝트에서 CS0535: 'GarnetClientAdapter'은(는) 'IStorageWrapper.SetAsync(string, string, int, int)' 인터페이스 멤버를 구현하지 않습니다 오류로 빌드가 중단됩니다.

재현 절차

  1. dotnet restore ExcelKvSystem.sln
  2. dotnet build ExcelKvSystem.sln
  3. ExcelKvPoC/Program.cs:24에서 위 오류 발생

추정 원인

IStorageWrapper에 traceability용 SetAsync(string, string, int, int) 오버로드가 추가되었으나 GarnetClientAdapter가 구현하지 않아 인터페이스 계약을 만족하지 못합니다. (동일 파일 상단에는 using 중복으로 CS0105 경고도 다수 발생)

요청 사항

  • GarnetClientAdapterSetAsync(string, string, int, int) 구현을 추가하고(메타데이터 저장 필요 여부 검토), 빌드가 통과하도록 수정
  • 함께 나타나는 중복 using 경고(CS0105)도 정리
## 현상 `dotnet build ExcelKvSystem.sln` 수행 시 `ExcelKvPoC` 프로젝트에서 `CS0535: 'GarnetClientAdapter'은(는) 'IStorageWrapper.SetAsync(string, string, int, int)' 인터페이스 멤버를 구현하지 않습니다` 오류로 빌드가 중단됩니다. ## 재현 절차 1. `dotnet restore ExcelKvSystem.sln` 2. `dotnet build ExcelKvSystem.sln` 3. `ExcelKvPoC/Program.cs:24`에서 위 오류 발생 ## 추정 원인 `IStorageWrapper`에 traceability용 `SetAsync(string, string, int, int)` 오버로드가 추가되었으나 `GarnetClientAdapter`가 구현하지 않아 인터페이스 계약을 만족하지 못합니다. (동일 파일 상단에는 using 중복으로 CS0105 경고도 다수 발생) ## 요청 사항 - `GarnetClientAdapter`에 `SetAsync(string, string, int, int)` 구현을 추가하고(메타데이터 저장 필요 여부 검토), 빌드가 통과하도록 수정 - 함께 나타나는 중복 using 경고(CS0105)도 정리
lectom added the bug label 2026-01-08 17:46:30 +09:00
cyhan closed this issue 2026-01-08 18:09:47 +09:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: cyhan/bim-dogma-poc#1