Skip to content

Change the default .NET Core launch/attach action names to .NET #135958

@adegeo

Description

@adegeo

-VS Code version: Code 1.61.2 (6cba118, 2021-10-19T14:57:20.575Z)
-OS version: Windows_NT x64 10.0.19043
Restricted Mode: No

The Core part of the .NET name was dropped for last years release, and continues to be dropped during the release happening next month. The launch/debug actions titles when you generate a launch.json file are out of date. The default should be .NET Launch... and .NET Attach...

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": ".NET Core Launch (console)",
            "type": "coreclr",
            "request": "launch",
            "preLaunchTask": "build",
            "program": "${workspaceFolder}/bin/Debug/net6.0/ConApp1.dll",
            "args": [],
            "cwd": "${workspaceFolder}",
            "console": "internalConsole",
            "stopAtEntry": false
        },
        {
            "name": ".NET Core Attach",
            "type": "coreclr",
            "request": "attach"
        }
    ]
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    *caused-by-extensionIssue identified to be caused by an extension

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions