첨부 실행 코드는 나눔고딕코딩 폰트를 사용합니다.
728x90
반응형
728x170

▶ .vscode/launch.json

{
    "version"        : "0.2.0",
    "configurations" :
    [
        {
            "name"              : ".NET Core Launch (web)",
            "type"              : "coreclr",
            "request"           : "launch",
            "preLaunchTask"     : "build",
            "program"           : "${workspaceFolder}/bin/Debug/netcoreapp3.1/TestProject.dll",
            "args"              : [],
            "cwd"               : "${workspaceFolder}",
            "stopAtEntry"       : false,
            "serverReadyAction" :
            {
                "action"  : "openExternally",
                "pattern" : "\\bNow listening on:\\s+(https?://\\S+)"
            },
            "env" :
            {
                "ASPNETCORE_ENVIRONMENT"            : "Development",
                "ASPNETCORE_URLS"                   : "https://localhost:5001",
                "ASPNETCORE_DETAILEDERRORS"         : "1",
                "ASPNETCORE_SHUTDOWNTIMEOUTSECONDS" : "3"
            },
            "sourceFileMap" :
            {
                "/Views" : "${workspaceFolder}/Views"
            }
        },
        {
            "name"      : ".NET Core Attach",
            "type"      : "coreclr",
            "request"   : "attach",
            "processId" : "${command:pickProcess}"
        }
    ]
}
728x90
반응형
그리드형(광고전용)
Posted by icodebroker

댓글을 달아 주세요