Skip to content

Commit 3f2d1ec

Browse files
authored
Add default startup configuration (#83)
1 parent 92a354f commit 3f2d1ec

File tree

2 files changed

+29
-2
lines changed

2 files changed

+29
-2
lines changed

SQLSchemaCompare.slnLaunch

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"Name": "Default",
4+
"Projects": [
5+
{
6+
"Path": "SQLSchemaCompare.UI\\SQLSchemaCompare.UI.csproj",
7+
"Action": "Start",
8+
"DebugTarget": "SQLSchemaCompare.UI"
9+
},
10+
{
11+
"Path": "SQLSchemaCompare\\SQLSchemaCompare.esproj",
12+
"Action": "Start",
13+
"DebugTarget": "Debug Main Process (fnm)"
14+
}
15+
]
16+
}
17+
]

SQLSchemaCompare/.vscode/launch.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,25 @@
22
"version": "0.2.0",
33
"configurations": [
44
{
5-
"name": "Debug Main Process",
5+
"name": "Debug Main Process (fnm)",
6+
"type": "node",
7+
"request": "launch",
8+
"cwd": "${workspaceFolder}",
9+
"runtimeExecutable": "fnm",
10+
"runtimeArgs": [ "exec", "--using", "22", "${workspaceFolder}/node_modules/.bin/electron.cmd" ],
11+
"args": [ "." ],
12+
"outputCapture": "std"
13+
},
14+
{
15+
"name": "Debug Main Process (node)",
616
"type": "node",
717
"request": "launch",
818
"cwd": "${workspaceFolder}",
919
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron",
1020
"windows": {
1121
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/electron.cmd"
1222
},
13-
"args" : ["."],
23+
"args": [ "." ],
1424
"outputCapture": "std"
1525
}
1626
]

0 commit comments

Comments
 (0)