Skip to content

Commit a4beee1

Browse files
committed
chore: create c# interview questions
1 parent 29847fb commit a4beee1

3 files changed

Lines changed: 45 additions & 0 deletions

File tree

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"name": ".NET 9 Launch (console)",
6+
"type": "coreclr",
7+
"request": "launch",
8+
"preLaunchTask": "build",
9+
"program": "${workspaceFolder}/bin/Debug/net9.0/csharp-interview.dll",
10+
"args": [],
11+
"cwd": "${workspaceFolder}",
12+
"console": "integratedTerminal",
13+
"stopAtEntry": false
14+
}
15+
]
16+
}

.vscode/settings.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"files.exclude": {
3+
"**/bin": true,
4+
"**/obj": true
5+
},
6+
"editor.formatOnSave": true,
7+
"editor.codeActionsOnSave": {
8+
"source.fixAll": "explicit"
9+
},
10+
"omnisharp.dotnetPath": "/usr/local/share/dotnet/dotnet",
11+
"terminal.integrated.env.osx": {
12+
"PATH": "/usr/local/share/dotnet:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin"
13+
}
14+
}

.vscode/tasks.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "build",
6+
"command": "dotnet",
7+
"type": "shell",
8+
"args": [
9+
"build"
10+
],
11+
"group": "build",
12+
"problemMatcher": "$msCompile"
13+
}
14+
]
15+
}

0 commit comments

Comments
 (0)