Skip to content

Commit

Permalink
chore: edit vscode folder
Browse files Browse the repository at this point in the history
  • Loading branch information
rajamatt committed Jun 17, 2024
1 parent 18e54c8 commit 48319af
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions reference/ToDo/src/.vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@
"type": "chrome",
"request": "launch",
"url": "http://localhost:5000",
"webRoot": "${workspaceFolder}/Counter",
"webRoot": "${workspaceFolder}/ToDo",
"inspectUri": "{wsProtocol}://{url.hostname}:{url.port}/_framework/debug/ws-proxy?browser={browserInspectUri}",
"timeout": 30000,
"preLaunchTask": "build-wasm",
"server": {
"runtimeExecutable": "dotnet",
"program": "run",
"args": ["--no-build","-f","net8.0-browserwasm","--launch-profile", "Counter (WebAssembly)"],
"args": ["--no-build","-f","net8.0-browserwasm","--launch-profile", "ToDo (WebAssembly)"],
"outputCapture": "std",
"timeout": 30000,
"cwd": "${workspaceFolder}/Counter"
"cwd": "${workspaceFolder}/ToDo"
}
},
{
Expand All @@ -41,13 +41,13 @@
"request": "launch",
"preLaunchTask": "build-desktop",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/Counter/bin/Debug/net8.0-desktop/Counter.dll",
"program": "${workspaceFolder}/ToDo/bin/Debug/net8.0-desktop/ToDo.dll",
"args": [],
"launchSettingsProfile": "Counter (Desktop)",
"launchSettingsProfile": "ToDo (Desktop)",
"env": {
"DOTNET_MODIFIABLE_ASSEMBLIES": "debug"
},
"cwd": "${workspaceFolder}/Counter",
"cwd": "${workspaceFolder}/ToDo",
// For more information about the 'console' field, see https://aka.ms/VSCode-CS-LaunchJson-Console
"console": "internalConsole",
"stopAtEntry": false
Expand Down
8 changes: 4 additions & 4 deletions reference/ToDo/src/.vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/Counter/Counter.csproj",
"${workspaceFolder}/ToDo/ToDo.csproj",
"/property:GenerateFullPaths=true",
"/property:TargetFramework=net8.0-browserwasm",
"/consoleloggerparameters:NoSummary"
Expand All @@ -20,7 +20,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Counter/Counter.csproj",
"${workspaceFolder}/ToDo/ToDo.csproj",
"/property:GenerateFullPaths=true",
"/property:TargetFramework=net8.0-browserwasm",
"/consoleloggerparameters:NoSummary"
Expand All @@ -33,7 +33,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/Counter/Counter.csproj",
"${workspaceFolder}/ToDo/ToDo.csproj",
"/property:GenerateFullPaths=true",
"/property:TargetFramework=net8.0-desktop",
"/consoleloggerparameters:NoSummary"
Expand All @@ -46,7 +46,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/Counter/Counter.csproj",
"${workspaceFolder}/ToDo/ToDo.csproj",
"/property:GenerateFullPaths=true",
"/property:TargetFramework=net8.0-desktop",
"/consoleloggerparameters:NoSummary"
Expand Down

0 comments on commit 48319af

Please sign in to comment.