Точка останова не будет достигнута в VSCode - PullRequest
0 голосов
/ 15 ноября 2018

Я новичок в VSCode и работаю над примером проекта с VSCode, .Net Core и Angular CLI.Создан базовый класс User и класс Registration с SqlLite и EntityFramework в бэкэнде.Когда я запускаю приложение, я не могу попасть в точки останова при подключении .Net Core Attach или из веб-запуска.При попытке отправить данные из почтальона ответ таков: приложение завершено без чтения всего тела запроса. Мой рабочий каталог - C: \ Users \ xxxx \ Documents \ Dateapp \ DateApp.API> Ниже приведен файл launch.json

{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/DateApp.API/bin/Debug/netcoreapp2.1/DateApp.API.dll",
"args": [],
"cwd": "${workspaceFolder}/DateApp.API",

        "stopAtEntry": false,
        "internalConsoleOptions": "openOnSessionStart",

        "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": "${workspaceFolder}/Views"
        }
    },
    {
        "name": ".NET Core Attach",
        "type": "coreclr",
        "request": "attach",
        "processId": "${command:pickProcess}",


    }
,]
}
.

И мой файл CSProj выглядит следующим образом

<Project Sdk="Microsoft.NET.Sdk.Web">
  <PropertyGroup>
    <TargetFramework>netcoreapp2.1</TargetFramework>
    <RuntimeFrameworkVersion>2.1</RuntimeFrameworkVersion>
  </PropertyGroup>
  <ItemGroup>
    <Folder Include="wwwroot\" />
  </ItemGroup>
  <ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore.App" />
    <PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.1.0" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.Abstractions" Version="2.1.0" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.Analyzers" Version="2.1.0" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.1.0" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.0" />
  </ItemGroup>
</Project>
...