Skip to content

Commit

Permalink
Cleanup VSCode launch.json and task.json
Browse files Browse the repository at this point in the history
  • Loading branch information
highbyte committed Sep 26, 2024
1 parent 00bf848 commit 7e5f0a2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 79 deletions.
47 changes: 13 additions & 34 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"name": "SilkNetNative app - .NET Core Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build skia native app",
"preLaunchTask": "build silk.net native app",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/apps/Highbyte.DotNet6502.App.SilkNetNative/bin/Debug/net8.0/Highbyte.DotNet6502.App.SilkNetNative.dll",
"args": [],
Expand All @@ -24,32 +24,6 @@
"cwd": "${workspaceFolder}/src/apps/Highbyte.DotNet6502.App.WASM",
"url": "http://localhost:5000",
"browser": "chrome"
},
{
"name": "Console Monitor app - .NET Core Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build console monitor app",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/apps/Highbyte.DotNet6502.App.ConsoleMonitor/bin/Debug/net8.0/Highbyte.DotNet6502.App.ConsoleMonitor.dll",
"args": [],
"cwd": "${workspaceFolder}/src/apps/Highbyte.DotNet6502.App.ConsoleMonitor/bin/Debug/net8.0",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "externalTerminal",
"stopAtEntry": false
},
{
"name": "Console example - .NET Core Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build console example",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/samples/ConsoleTestPrograms/bin/Debug/net8.0/ConsoleTestPrograms.dll",
"args": [],
"cwd": "${workspaceFolder}/samples/ConsoleTestPrograms/bin/Debug/net8.0",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "externalTerminal",
"stopAtEntry": false
},
{
"name": "SadConsole app - .NET Core Launch",
Expand All @@ -63,15 +37,20 @@
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "integratedTerminal",
"stopAtEntry": false
},
},
{
"name": "Old Blazor WASM example - Blazor WASM Launch and Debug",
"type": "blazorwasm",
"name": "Console Monitor app - .NET Core Launch",
"type": "coreclr",
"request": "launch",
"cwd": "${workspaceFolder}/samples/BlazorWasmTest",
"url": "http://localhost:5000",
"browser": "chrome"
},
"preLaunchTask": "build console monitor app",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/src/apps/Highbyte.DotNet6502.App.ConsoleMonitor/bin/Debug/net8.0/Highbyte.DotNet6502.App.ConsoleMonitor.dll",
"args": [],
"cwd": "${workspaceFolder}/src/apps/Highbyte.DotNet6502.App.ConsoleMonitor/bin/Debug/net8.0",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "externalTerminal",
"stopAtEntry": false
},
{
"name": ".NET Core Attach",
"type": "coreclr",
Expand Down
45 changes: 0 additions & 45 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,22 +65,6 @@
"isDefault": true
}
},
{
"label": "build console example",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/samples/ConsoleTestPrograms/ConsoleTestPrograms.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "build sadconsole app",
"command": "dotnet",
Expand All @@ -97,35 +81,6 @@
"isDefault": true
}
},
{
"label": "build (old) blazor wasm example",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/samples/BlazorWasmTest/BlazorWasmTest.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile",
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "watch console example",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"${workspaceFolder}/samples/ConsoleTestPrograms/ConsoleTestPrograms.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "test",
"command": "dotnet",
Expand Down

0 comments on commit 7e5f0a2

Please sign in to comment.