一:创建C# 官方文档

1,安装vscode

2,安装插件 C#

3,初始化项目: dotnet new console --framework net6.0

4,运行:dotnet run

二:调试

1,安装 net6.0 sdk :下载SDK

2,按键 F5 (mac: 长按fn键,就会出现有F1-F12,或者自行百度)

3,选择vscode 左边页签 调试与运行 出现如下界面:

 

4,自动生成文件:.vscode目录、launch.json、tasks.json 

 

 

 5,launch.json内容

{
    "version": "0.2.0",
    "configurations": [
        {
            // 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
            "name": ".NET Core Launch (console)",
            "type": "coreclr",
            "request": "launch",
            "preLaunchTask": "build",
            // If you have changed target frameworks, make sure to update the program path.
            "program": "${workspaceFolder}/Study_Class/bin/Debug/net5.0/Study_Class.dll",
            "args": [],
            "cwd": "${workspaceFolder}/Study_Class",
            // For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
            "console": "internalConsole",
            "stopAtEntry": false
        },
        {
            "name": ".NET Core Attach",
            "type": "coreclr",
            "request": "attach"
        }
    ]
}

6,tasks.json 内容

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "command": "dotnet",
            "type": "process",
            "args": [
                "build",
                "${workspaceFolder}/Study_Class/Study_Class.csproj",
                "/property:GenerateFullPaths=true",
                "/consoleloggerparameters:NoSummary"
            ],
            "problemMatcher": "$msCompile"
        },
        {
            "label": "publish",
            "command": "dotnet",
            "type": "process",
            "args": [
                "publish",
                "${workspaceFolder}/Study_Class/Study_Class.csproj",
                "/property:GenerateFullPaths=true",
                "/consoleloggerparameters:NoSummary"
            ],
            "problemMatcher": "$msCompile"
        },
        {
            "label": "watch",
            "command": "dotnet",
            "type": "process",
            "args": [
                "watch",
                "run",
                "${workspaceFolder}/Study_Class/Study_Class.csproj",
                "/property:GenerateFullPaths=true",
                "/consoleloggerparameters:NoSummary"
            ],
            "problemMatcher": "$msCompile"
        }
    ]
}

注意点:因为开始我没有按照net6.0 SDK,后续安装的,所以调试文件的生成可能会跟我这边不一致,安装步骤提示往下走就行。只要生成了 launch.json、tasks.json 文件即可。

参考资料:创建C#项目

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐