Microsoft MVP성태의 닷넷 이야기
VS.NET IDE: 193. C# - Visual Studio의 자식 프로세스 디버깅 [링크 복사], [링크+제목 복사],
조회: 1453
글쓴 사람
정성태 (seongtaejeong at gmail.com)
홈페이지
첨부 파일
 

(시리즈 글이 4개 있습니다.)
VS.NET IDE: 47. Orcas - Web Browser Debugger를 이용한 보호 모드의 ActiveX 컨트롤 디버깅
; https://www.sysnet.pe.kr/2/0/500

디버깅 기술: 25. 보호 모드로 응용 프로그램 디버깅하는 방법
; https://www.sysnet.pe.kr/2/0/682

디버깅 기술: 26. 보호 모드로 응용 프로그램 디버깅하는 방법 - 두 번째 이야기
; https://www.sysnet.pe.kr/2/0/683

VS.NET IDE: 193. C# - Visual Studio의 자식 프로세스 디버깅
; https://www.sysnet.pe.kr/2/0/13720




C# - Visual Studio의 자식 프로세스 디버깅

실제로 테스트를 해볼까요? ^^

ConsoleApp1, ConsoleApp2 각각 2개의 Console Application을 다음과 같은 코드로 만듭니다.

// ConsoleApp1
using System.Diagnostics;

internal class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("Hello, ConsoleApp1!");

        Process.Start("ConsoleApp2.exe").WaitForExit();
    }
}

// ConsoleApp2

internal class Program
{
    static void Main(string[] args)
    {
        Console.WriteLine("Hello, ConsoleApp2!"); // 여기에 BP 설정
    }
}

이후 ConsoleApp1을 ("Set as Startup Project" 메뉴를 이용해) Startup Project로 설정하고, ConsoleApp2의 Console.WriteLine에 BP를 걸어 둔 다음 F5 디버깅으로 실행하면 BP가 안 걸립니다.

왜냐하면 기본적으로 Visual Studio는 (windbg와는 달리) 자식 프로세스에 대한 디버깅을 지원하지 않기 때문입니다. 대신 마이크로소프트는 이에 대한 보완으로 별도의 확장 패키지를 내놓았습니다.

Microsoft Child Process Debugging Power Tool (Visual Studio 2015, 2017, 2019)
; https://marketplace.visualstudio.com/items?itemName=vsdbgplat.MicrosoftChildProcessDebuggingPowerTool

Microsoft Child Process Debugging Power Tool 2022
; https://marketplace.visualstudio.com/items?itemName=vsdbgplat.MicrosoftChildProcessDebuggingPowerTool2022

이것을 설치한 후, "Debug" / "Other Debug Targets" / "Child Process Debugging Settings" 메뉴를 선택하면 이런 창이 뜨는데,

vs_child_debug_1.png

위의 화면처럼 "Enable child process debugging"을 체크하고 "Save" 버튼을 누르면, 이제 자식 프로세스까지 디버깅이 가능합니다.




그런데, 위의 상태로 디버깅을 해도 여전히 ConsoleApp2의 BP는 걸리지 않습니다. 이에 대한 원인은, 위의 화면에서 잘 설명하고 있습니다.

This window controls which child processes are debugging, and what type of code is debugged within the process. Settings apply to the current solution.

This extension has two requirements: (1) the parent (launching) process must be debgged with the native (unmanaged) debug enging and (2) the parent process much launch the child process using the CreateProcess, CreateProcessAsUser, CreateProcessWithLogonW or CreateProcessWithLogonW Win32 APIs.


따라서, 닷넷 프로세스에 대한 디버깅의 경우 "Startup Project"로 지정된 프로젝트의 속성 창에서 "Debug" / "General"의 "Open debug launch profiles UI" 링크를 눌러 나오는 "Enable native code debugging"을 체크해야 합니다.

이후, 다시 F5 디버깅을 하면 ConsoleApp2의 BP가 걸립니다. (사실, 이에 대한 언급이 "Microsoft Child Process Debugging Power Tool" 소개 페이지에 실려 있습니다.)




[이 글에 대해서 여러분들과 의견을 공유하고 싶습니다. 틀리거나 미흡한 부분 또는 의문 사항이 있으시면 언제든 댓글 남겨주십시오.]







[최초 등록일: ]
[최종 수정일: 8/29/2024]

Creative Commons License
이 저작물은 크리에이티브 커먼즈 코리아 저작자표시-비영리-변경금지 2.0 대한민국 라이센스에 따라 이용하실 수 있습니다.
by SeongTae Jeong, mailto:techsharer at outlook.com

비밀번호

댓글 작성자
 




[1]  2  3  4  5  6  7  8  9  10  11  12  13  14  15  ...
NoWriterDateCnt.TitleFile(s)
13754정성태10/4/2024258닷넷: 2304. C# 13 - (8) 부분 메서드 정의를 속성 및 인덱서에도 확대파일 다운로드1
13753정성태10/4/2024260Linux: 81. Linux - PATH 환경변수의 적용 규칙
13752정성태10/2/2024337닷넷: 2303. C# 13 - (7) ref struct의 interface 상속 및 제네릭 제약으로 사용 가능파일 다운로드1
13751정성태10/2/2024491C/C++: 176. C/C++ - ARM64로 포팅할 때 유의할 점
13750정성태10/1/2024650C/C++: 175. C++ - WinMain/wWinMain 호출 전의 CRT 초기화 단계
13749정성태9/30/2024795닷넷: 2302. C# - ssh-keygen으로 생성한 Private Key와 Public Key 연동파일 다운로드1
13748정성태9/29/2024889닷넷: 2301. C# - BigInteger 타입이 byte 배열로 직렬화하는 방식
13747정성태9/28/2024831닷넷: 2300. C# - OpenSSH의 공개키 파일에 대한 "BEGIN OPENSSH PUBLIC KEY" / "END OPENSSH PUBLIC KEY" PEM 포맷파일 다운로드1
13746정성태9/28/2024823오류 유형: 924. Python - LocalProtocolError("Illegal header value ...")
13745정성태9/28/2024837Linux: 80. 리눅스 - 실행 중인 프로세스 내부의 환경변수 설정을 구하는 방법 (lldb)
13744정성태9/27/2024915닷넷: 2299. C# - Windows Hello 사용자 인증 다이얼로그 표시하기파일 다운로드1
13743정성태9/26/20241163닷넷: 2298. C# - Console 프로젝트에서의 await 대상으로 Main 스레드 활용하는 방법 [1]
13742정성태9/26/2024969닷넷: 2297. C# - ssh-keygen으로 생성한 ecdsa 유형의 Public Key 파일 해석 [1]파일 다운로드1
13741정성태9/25/2024816디버깅 기술: 202. windbg - ASP.NET MVC Web Application (.NET Framework) 응용 프로그램의 덤프 분석 시 요령
13740정성태9/24/2024897기타: 86. RSA 공개키 등의 modulus 값에 0x00 선행 바이트가 있는 이유(ASN.1 인코딩)
13739정성태9/24/2024999닷넷: 2297. C# - ssh-keygen으로 생성한 Public Key 파일 해석과 fingerprint 값(md5, sha256) 생성파일 다운로드1
13738정성태9/22/2024938C/C++: 174. C/C++ - 윈도우 운영체제에서의 file descriptor, FILE*파일 다운로드1
13737정성태9/21/20241074개발 환경 구성: 727. Visual C++ - 리눅스 프로젝트를 위한 빌드 서버의 msbuild 구성
13736정성태9/20/20241199오류 유형: 923. Visual Studio Code - Could not establish connection to "...": Port forwarding is disabled.
13735정성태9/20/20241264개발 환경 구성: 726. ARM 플랫폼용 Visual C++ 리눅스 프로젝트 빌드
13734정성태9/19/20241332개발 환경 구성: 725. ssh를 이용한 원격 docker 서비스 사용
13733정성태9/19/20241242VS.NET IDE: 194. Visual Studio - Cross Platform / "Authentication Type: Private Key"로 접속하는 방법
13732정성태9/17/20241217개발 환경 구성: 724. ARM + docker 환경에서 .NET 8 설치
13731정성태9/15/20241600개발 환경 구성: 723. C# / Visual C++ - Control Flow Guard (CFG) 활성화 [1]파일 다운로드2
13730정성태9/10/20241182오류 유형: 922. docker - RULE_APPEND failed (No such file or directory): rule in chain DOCKER
[1]  2  3  4  5  6  7  8  9  10  11  12  13  14  15  ...