简体   繁体   中英

Visual Studio Code cannot debug program

I am trying to use the C# extension in VS code to debug a program, however when I try to run without debugging I get the message "Cannot launch program setting the 'outFiles' attribute might help".

我的文件在编辑器中的位置

My launch.json file

 "version": "0.2.0",
    "configurations": [
        {
            "type": "node",
            "request": "launch",
            "name": "Launch Program",
            "skipFiles": [
                "<node_internals>/**"
            ],
            "program": "${file}"
        }
    ]
}

My C# code

using System; 


    // Class declaration 
    class Geeks { 

        // Main Method 
        static void Main(string[] args) { 


        } 
    } 

As noted in comments you are using the launch.json for a Node project.

The Visual Studio Code C# extension can generate the assets you need to build and debug.

You can generate them through the Command Palette (View > Command Palette) by typing '.NET', and running .NET: Generate Assets for Build and Debug. This command will generate the necessary launch.json and tasks.json configuration files (under the .vscode folder).

See docs and debugging

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM