Skip to content

Commit 70136a5

Browse files
committed
Update VS Code support files
1 parent ce29458 commit 70136a5

File tree

4 files changed

+77
-78
lines changed

4 files changed

+77
-78
lines changed

.vscode/c_cpp_properties.json

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"configurations": [
3-
{
4-
"name": "Win32",
5-
"includePath": [
6-
"${workspaceFolder}/**"
7-
],
8-
"defines": [
9-
"_DEBUG",
10-
"UNICODE",
11-
"_UNICODE"
12-
],
13-
"windowsSdkVersion": "10.0.17134.0",
14-
"cStandard": "c11",
15-
"cppStandard": "c++17",
16-
"intelliSenseMode": "msvc-x64"
17-
}
18-
],
19-
"version": 4
2+
"configurations": [
3+
{
4+
"name": "Win32",
5+
"includePath": [
6+
"${workspaceFolder}/**"
7+
],
8+
"defines": [
9+
"_DEBUG",
10+
"UNICODE",
11+
"_UNICODE"
12+
],
13+
"windowsSdkVersion": "10.0.17134.0",
14+
"cStandard": "c11",
15+
"cppStandard": "c++17",
16+
"intelliSenseMode": "msvc-x64"
17+
}
18+
],
19+
"version": 4
2020
}

.vscode/extensions.json

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
2-
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3-
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4-
5-
// List of extensions which should be recommended for users of this workspace.
6-
"recommendations": [
7-
"ms-vscode.csharp",
8-
"tintoy.msbuild-project-tools",
9-
"ms-vscode.cpptools"
10-
],
11-
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
12-
"unwantedRecommendations": [
13-
14-
]
2+
// See https://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
3+
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
4+
// List of extensions which should be recommended for users of this workspace.
5+
"recommendations": [
6+
"editorconfig.editorconfig",
7+
"codezombiech.gitignore",
8+
"ms-dotnettools.csharp",
9+
"tintoy.msbuild-project-tools",
10+
"ms-vscode.cpptools",
11+
],
12+
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
13+
"unwantedRecommendations": []
1514
}

.vscode/launch.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
2-
// Use IntelliSense to find out which attributes exist for C# debugging
3-
// Use hover for the description of the existing attributes
4-
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5-
"version": "0.2.0",
6-
"configurations": [
7-
{
8-
"name": ".NET Core Launch (console)",
9-
"type": "coreclr",
10-
"request": "launch",
11-
"preLaunchTask": "build",
12-
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceFolder}/bin/Debug/netcoreapp2.1/THNETII.WinApiNative.Test.dll",
14-
"args": [],
15-
"cwd": "${workspaceFolder}/test/THNETII.WinApiNative.Test",
16-
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
17-
"console": "internalConsole",
18-
"stopAtEntry": false,
19-
"internalConsoleOptions": "openOnSessionStart"
20-
},
21-
{
22-
"name": ".NET Core Attach",
23-
"type": "coreclr",
24-
"request": "attach",
25-
"processId": "${command:pickProcess}"
26-
}
27-
,]
2+
// Use IntelliSense to find out which attributes exist for C# debugging
3+
// Use hover for the description of the existing attributes
4+
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"name": ".NET Core Launch (console)",
9+
"type": "coreclr",
10+
"request": "launch",
11+
"preLaunchTask": "build",
12+
// If you have changed target frameworks, make sure to update the program path.
13+
"program": "${workspaceFolder}/bin/Debug/netcoreapp2.1/THNETII.WinApiNative.Test.dll",
14+
"args": [],
15+
"cwd": "${workspaceFolder}/test/THNETII.WinApiNative.Test",
16+
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
17+
"console": "internalConsole",
18+
"stopAtEntry": false,
19+
"internalConsoleOptions": "openOnSessionStart"
20+
},
21+
{
22+
"name": ".NET Core Attach",
23+
"type": "coreclr",
24+
"request": "attach",
25+
"processId": "${command:pickProcess}"
26+
},
27+
]
2828
}

.vscode/tasks.json

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
{
2-
"version": "2.0.0",
3-
"tasks": [
4-
{
5-
"label": "build",
6-
"command": "dotnet",
7-
"type": "process",
8-
"args": [
9-
"build"
10-
],
11-
"problemMatcher": "$msCompile"
12-
},
13-
{
14-
"label": "test",
15-
"command": "dotnet",
16-
"type": "process",
17-
"args": [
18-
"test"
19-
],
20-
"problemMatcher": "$msCompile"
21-
}
22-
]
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "process",
8+
"args": [
9+
"build"
10+
],
11+
"problemMatcher": "$msCompile"
12+
},
13+
{
14+
"label": "test",
15+
"command": "dotnet",
16+
"type": "process",
17+
"args": [
18+
"test"
19+
],
20+
"problemMatcher": "$msCompile"
21+
}
22+
]
2323
}

0 commit comments

Comments
 (0)