VSCode C#
只支持 .NET Core。
.NET Core
安装 .NET Core SDK,安装完成后在终端中运行
dotnet --version
dotnet -h
第一个程序 Hello World
mkdir helloworld && cd helloworld
dotnet new console
dotnet restore
dotnet run
Microsoft C# extension
教程:Instructions for setting up the .NET Core debugger
VSCode 打开上面 helloworld
- 添加 .vscode/tasks.json
- 添加 .vscode/launch.json,打开 Program.cs 文件,
F5
, 选择 .NET Core,编辑 launch.json, 修改 “program” 的值。上面已经编译过项目(dotnet run
),看看编译文件放到哪。比如
"program": "${workspaceRoot}/bin/Debug/netcoreapp1.1/helloworld.dll",
c# - dotnet build specify main method