분류 전체보기
-
-
[VS][별*] Github Copilot MCP 사용Visual Studio 2026. 3. 10. 16:44
아래 Github Copilot MCP tools 가 있어야 Agent 모드로 알아서 파일 지지고 볶는 행위를 함. 그냥 솔루션 만들면 안들어가있고 아마도 Git clone하면 아래처럼 Solution 폴더 안에 .mcp.json으로 생성하는것 같은데 ( 추정. 확인 해봐야 함.) 여튼 로컬에서 새로만든 solution 프로젝트에서도 사용하고 싶으면사용자 폴더에 있는 Global .mcp.json 에 Server 로 추가해 줘야 함. 아래 처럼 직접 추가해서 수정해주고 저장. .mcp.json{ "inputs": [], "servers": { "github": { "type": "stdio", "command": "docker", "args": [ "run..
-
[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 생성
-
-