Microsoft MVP성태의 닷넷 이야기
VS.NET IDE: 103. Visual Studio의 Ctrl + F5 실행 동작 [링크 복사], [링크+제목 복사],
조회: 19778
글쓴 사람
정성태 (techsharer at outlook.com)
홈페이지
첨부 파일

Visual Studio의 Ctrl + F5 실행 동작

아래의 질문이 있군요. ^^

visual studio의 ctrl+f5 기능을 command 입력으로 실행하기? 
; http://lab.gamecodi.com/board/zboard.php?id=GAMECODILAB_QnA_etc&no=3833&z=

이 질문을 읽으면서 생각난 건데요... 콘솔 유형의 프로그램을 Ctrl + F5 (Start Without Debugging) 키로 실행시키면 "명령행 창"이 없어지지 않고 "Press any key to continue..." 문자열과 함께 대기를 하게 됩니다.

vs_cmd_1.png

반면 그냥 "F5(Start Debugging)"키를 누르면 실행 후 대기하지 않고 곧바로 창이 종료하게 됩니다. 도대체 그 차이가 뭘까요? ^^

이를 확인하려면, 콘솔 프로그램에서 부모 프로세스의 ID를 구하는 코드를 작성해 보면 됩니다.

How to get parent process in .NET in managed way
; http://stackoverflow.com/questions/394816/how-to-get-parent-process-in-net-in-managed-way

using System;
using System.Diagnostics;

class Program
{
    static void Main(string[] args)
    {
        int processId = Process.GetCurrentProcess().Id;
        Console.WriteLine("ParentPid: " + Process.GetProcessById(processId).Parent().Id);

        if (Debugger.IsAttached == true)
        {
            Console.ReadLine();
        }
    }
}

public static class ProcessExtensions
{
    private static string FindIndexedProcessName(int pid)
    {
        var processName = Process.GetProcessById(pid).ProcessName;
        var processesByName = Process.GetProcessesByName(processName);
        string processIndexdName = null;

        for (var index = 0; index < processesByName.Length; index++)
        {
            processIndexdName = index == 0 ? processName : processName + "#" + index;
            var processId = new PerformanceCounter("Process", "ID Process", processIndexdName);
            if ((int)processId.NextValue() == pid)
            {
                return processIndexdName;
            }
        }

        return processIndexdName;
    }

    private static Process FindPidFromIndexedProcessName(string indexedProcessName)
    {
        var parentId = new PerformanceCounter("Process", "Creating Process ID", indexedProcessName);
        return Process.GetProcessById((int)parentId.NextValue());
    }

    public static Process Parent(this Process process)
    {
        return FindPidFromIndexedProcessName(FindIndexedProcessName(process.Id));
    }
}

위의 코드를 F5로 실행해 보면, 출력되는 부모 프로세스 ID값이 비주얼 스튜디오인 devenv.exe임을 알 수 있습니다. 비주얼 스튜디오 입장에서는 디버거로써 매끄럽게 동작하기 위해 바로 하위의 프로세스로 콘솔 프로그램을 실행시켰던 것입니다.

반면 Ctrl + F5키로 실행하면 부모 프로세스로 devenv.exe와의 사이에 cmd.exe가 끼어들어간 것을 볼 수 있고 그것의 프로세스 ID를 출력하게 됩니다. 그리고 그 순간의 cmd.exe 창을 비주얼 스튜디오가 어떻게 실행했는지를 알기 위해 Process Explorer를 이용해 보면 다음과 같은 명령행을 확인할 수 있습니다.

"C:\WINDOWS\system32\cmd.exe" /c ""C:\ConsoleApplication1\bin\Debug\ConsoleApplication1.exe"  & pause""

그렇습니다. Ctrl + F5 키가 눌린 경우 비주얼 스튜디오는 cmd.exe의 인자로 콘솔 프로그램의 실행 파일 경로와 함께 "pause" 명령을 추가해 그런 효과를 낸 것입니다. ^^

(첨부한 파일은 위의 예제를 테스트한 코드입니다.)




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







[최초 등록일: ]
[최종 수정일: 9/8/2015]

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

비밀번호

댓글 작성자
 




... 61  62  63  64  65  66  67  68  69  70  71  [72]  73  74  75  ...
NoWriterDateCnt.TitleFile(s)
11826정성태2/26/201912093오류 유형: 520. 우분투에 .NET Core SDK 설치 시 패키지 의존성 오류
11825정성태2/25/201916924개발 환경 구성: 428. Visual Studio 2019 - CMake를 이용한 리눅스 빌드 환경 설정 [1]
11824정성태2/25/201911692오류 유형: 519. The SNMP Service encountered an error while accessing the registry key SYSTEM\CurrentControlSet\Services\SNMP\Parameters\TrapConfiguration. [1]
11823정성태2/21/201913137오류 유형: 518. IIS 관리 콘솔이 뜨지 않는 문제
11822정성태2/20/201911341오류 유형: 517. docker에 설치한 MongoDB 서버로 연결이 안 되는 경우
11821정성태2/20/201911807오류 유형: 516. Visual Studio 2019 - This extension uses deprecated APIs and is at risk of not functioning in a future VS update. [1]
11820정성태2/20/201914913오류 유형: 515. 윈도우 10 1809 업데이트 후 "User Profiles Service" 1534 경고 발생
11819정성태2/20/201913559Windows: 158. 컴퓨터와 사용자의 SID(security identifier) 확인 방법
11818정성태2/20/201912514VS.NET IDE: 131. Visual Studio 2019 Preview의 닷넷 프로젝트 빌드가 20초 이상 걸리는 경우 [2]
11817정성태2/17/20199736오류 유형: 514. WinDbg Preview 실행 오류 - Error : DbgX.dll : WindowsDebugger.WindowsDebuggerException: Could not load dbgeng.dll
11816정성태2/17/201912197Windows: 157. 윈도우 스토어 앱(Microsoft Store App)을 명령행에서 직접 실행하는 방법
11815정성태2/14/201911123오류 유형: 513. Visual Studio 2019 - VSIX 설치 시 "The extension cannot be installed to this product due to prerequisites that cannot be resolved." 오류 발생
11814정성태2/12/20199862오류 유형: 512. VM(가상 머신)의 NT 서비스들이 자동 시작되지 않는 문제
11813정성태2/12/201911468.NET Framework: 809. C# - ("Save File Dialog" 등의) 대화 창에 확장 속성을 보이는 방법
11812정성태2/11/20199407오류 유형: 511. Windows Server 2003 VM 부팅 후 로그인 시점에 0xC0000005 BSOD 발생
11811정성태2/11/201913097오류 유형: 510. 서버 운영체제에 NVIDIA GeForce Experience 실행 시 wlanapi.dll 누락 문제
11810정성태2/11/201911139.NET Framework: 808. .NET Profiler - GAC 모듈에서 GAC 비-등록 모듈을 참조하는 경우의 문제
11809정성태2/11/201912623.NET Framework: 807. ClrMD를 이용해 메모리 덤프 파일로부터 특정 인스턴스를 참조하고 있는 소유자 확인
11808정성태2/8/201913755디버깅 기술: 123. windbg - 닷넷 응용 프로그램의 메모리 누수 분석
11807정성태1/29/201912121Windows: 156. 가상 디스크의 용량을 복구 파티션으로 인해 늘리지 못하는 경우 [4]
11806정성태1/29/201911782디버깅 기술: 122. windbg - 덤프 파일로부터 PID와 환경 변수 등의 정보를 구하는 방법
11805정성태1/28/201913734.NET Framework: 806. C# - int []와 object []의 차이로 이해하는 제네릭의 필요성 [4]파일 다운로드1
11804정성태1/24/201911755Windows: 155. diskpart - remove letter 이후 재부팅 시 다시 드라이브 문자가 할당되는 경우
11803정성태1/10/201911247디버깅 기술: 121. windbg - 닷넷 Finalizer 스레드가 멈춰있는 현상
11802정성태1/7/201912638.NET Framework: 805. 두 개의 윈도우를 각각 실행하는 방법(Windows Forms, WPF)파일 다운로드1
11801정성태1/1/201913506개발 환경 구성: 427. Netsh의 네트워크 모니터링 기능 [3]
... 61  62  63  64  65  66  67  68  69  70  71  [72]  73  74  75  ...