File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments