4

VS Code で Web アプリケーションをデバッグしようとしています。dotnet new angular を使用して、次のアプリケーションを作成しました。このアプリケーションをソリューションに追加しました。アプリケーションは正常にビルドおよび実行されます。アプリケーションにアタッチすることで、アプリケーションをデバッグできます。しかし、アプリケーションをデバッグ モードで実行しようとすると、次の例外が発生します。

スローされた例外: System.Private.CoreLib.ni.dll の 'System.AggregateException'

健全性チェックとして、コンソール アプリケーションをソリューションに追加し、それをデバッグしようとしました。コンソール アプリケーションのデバッグは問題なく機能します。それで、次のように dotnet core mvc を作成してみました。

dotnet new mvc -n try-me -o try-me

起動構成を追加したところ、問題なくデバッグされました。したがって、これは角度テンプレートだけの問題のように見えます。他の誰かがこのテンプレートをデバッグするために入手しましたか? これが私のlaunch.jsonです。「.NET Core Launch (web)」の構成が問題です。

{
"version": "0.2.0",
"configurations": [   

    {
        "name": ".NET Core Launch (console)",
        "type": "coreclr",
        "request": "launch",
        "preLaunchTask": "build",
        "program": "${workspaceRoot}/jollies/bin/Debug/netcoreapp1.1/jollies.dll",
        "args": [],
        "cwd": "${workspaceRoot}",
        "stopAtEntry": false,
        "console": "internalConsole"
    },
    {
        "name": ".NET Core Launch (web)",
        "type": "coreclr",
        "request": "launch",
        "preLaunchTask": "build",
        "program": "${workspaceRoot}/cars-webapp/bin/Debug/netcoreapp1.1/cars-webapp.dll",
        "args": [],
        "cwd": "${workspaceRoot}/cars-webapp",
        "stopAtEntry": false,
        "launchBrowser": {
            "enabled": true,
            "args": "${auto-detect-url}",
            "windows": {
                "command": "cmd.exe",
                "args": "/C start ${auto-detect-url}"
            },
            "osx": {
                "command": "open"
            },
            "linux": {
                "command": "xdg-open"
            }
        },
        "env": {
            "ASPNETCORE_ENVIRONMENT": "Development"
        },
        "sourceFileMap": {
            "/Views": "${workspaceRoot}/Views"
        }
    },
    {
        "name": ".NET Core Launch (web-try me)",
        "type": "coreclr",
        "request": "launch",
        "preLaunchTask": "build",
        "program": "${workspaceRoot}/try-me/bin/Debug/netcoreapp1.1/try-me.dll",
        "args": [],
        "cwd": "${workspaceRoot}/try-me",
        "stopAtEntry": false,
        "launchBrowser": {
            "enabled": true,
            "args": "${auto-detect-url}",
            "windows": {
                "command": "cmd.exe",
                "args": "/C start ${auto-detect-url}"
            },
            "osx": {
                "command": "open"
            },
            "linux": {
                "command": "xdg-open"
            }
        },
        "env": {
            "ASPNETCORE_ENVIRONMENT": "Development"
        },
        "sourceFileMap": {
            "/Views": "${workspaceRoot}/Views"
        }
    },
    {
        "name": ".NET Core Attach",
        "type": "coreclr",
        "request": "attach",
        "processId": "${command:pickProcess}"
    }
]

}

4

0 に答える 0