-
[C#] HttpClientC#/기초 2025. 12. 9. 15:45
# Errorhttps://keistory.tistory.com/1735 The SSL connection could not be established, see inner exception HttpClientHandler clientHandler = new HttpClientHandler();clientHandler.ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => { return true; };HttpClient httpClient = new HttpClient(clientHandler); Ex)McpClient 생성
-
-
-
[AI] IChatClientAI 2025. 11. 26. 10:57
https://learn.microsoft.com/ko-kr/agent-framework/user-guide/agents/agent-types/chat-client-agent?pivots=programming-language-csharp 어떤 IChatClient을/를 기반으로 한 에이전트IChatClient 구현에서 Microsoft 에이전트 프레임워크를 사용하는 방법을 알아봅니다.learn.microsoft.com https://learn.microsoft.com/ko-kr/dotnet/ai/quickstarts/build-mcp-client 빠른 시작 - .NET을 사용하여 최소 MCP 클라이언트 만들기 - .NET최소 MCP 클라이언트를 만들고 .NET을 사용하여 MCP 서버에 연결하는 방법을 알..
-
[Git] Git remote 변경 시 push ErrorGit 2025. 11. 18. 13:54
Git remote 변경 후 push할 때 lfs 관련 에러 unable to find source for object (try running `git lfs fetch --all`) Error 나올 때 git config lfs.allowincompletepush true https://stackoverflow.com/questions/57417550/how-to-ignore-git-lfs-unable-to-find-source How to Ignore Git LFS Unable to Find SourceI have been given an old repository with LFS but some of the (probably older) files are missing so I cannot p..