File tree Expand file tree Collapse file tree 3 files changed +40
-0
lines changed
Expand file tree Collapse file tree 3 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "configurations" : [
3+ {
4+ "type" : " lldb" ,
5+ "request" : " launch" ,
6+ "args" : [],
7+ "cwd" : " ${workspaceFolder:ATCryptography}" ,
8+ "name" : " Debug App" ,
9+ "program" : " ${workspaceFolder:ATCryptography}/.build/debug/App" ,
10+ "preLaunchTask" : " swift: Build Debug App"
11+ },
12+ {
13+ "type" : " lldb" ,
14+ "request" : " launch" ,
15+ "args" : [],
16+ "cwd" : " ${workspaceFolder:ATCryptography}" ,
17+ "name" : " Release App" ,
18+ "program" : " ${workspaceFolder:ATCryptography}/.build/release/App" ,
19+ "preLaunchTask" : " swift: Build Release App"
20+ }
21+ ]
22+ }
Original file line number Diff line number Diff line change 1+ {}
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 2.0.0" ,
3+ "tasks" : [
4+ {
5+ "label" : " Build" ,
6+ "type" : " shell" ,
7+ "command" : " swift build && .build/debug" ,
8+ "presentation" : {
9+ "reveal" : " always"
10+ },
11+ "group" : {
12+ "kind" : " build" ,
13+ "isDefault" : true
14+ }
15+ }
16+ ]
17+ }
You can’t perform that action at this time.
0 commit comments