Skip to content

Commit

Permalink
chore: add vscode folder
Browse files Browse the repository at this point in the history
  • Loading branch information
rajamatt committed Jun 5, 2024
1 parent 0c76a4c commit 1adf6fb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions reference/Commerce/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}/dsdsds",
"webRoot": "${workspaceFolder}/Commerce",
"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", "dsdsds (WebAssembly)"],
"args": ["--no-build","-f","net8.0-browserwasm","--launch-profile", "Commerce (WebAssembly)"],
"outputCapture": "std",
"timeout": 30000,
"cwd": "${workspaceFolder}/dsdsds"
"cwd": "${workspaceFolder}/Commerce"
}
},
{
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}/dsdsds/bin/Debug/net8.0-desktop/dsdsds.dll",
"program": "${workspaceFolder}/Commerce/bin/Debug/net8.0-desktop/Commerce.dll",
"args": [],
"launchSettingsProfile": "dsdsds (Desktop)",
"launchSettingsProfile": "Commerce (Desktop)",
"env": {
"DOTNET_MODIFIABLE_ASSEMBLIES": "debug"
},
"cwd": "${workspaceFolder}/dsdsds",
"cwd": "${workspaceFolder}/Commerce",
// 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/Commerce/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}/dsdsds/dsdsds.csproj",
"${workspaceFolder}/Commerce/Commerce.csproj",
"/property:GenerateFullPaths=true",
"/property:TargetFramework=net8.0-browserwasm",
"/consoleloggerparameters:NoSummary"
Expand All @@ -20,7 +20,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/dsdsds/dsdsds.csproj",
"${workspaceFolder}/Commerce/Commerce.csproj",
"/property:GenerateFullPaths=true",
"/property:TargetFramework=net8.0-browserwasm",
"/consoleloggerparameters:NoSummary"
Expand All @@ -33,7 +33,7 @@
"type": "process",
"args": [
"build",
"${workspaceFolder}/dsdsds/dsdsds.csproj",
"${workspaceFolder}/Commerce/Commerce.csproj",
"/property:GenerateFullPaths=true",
"/property:TargetFramework=net8.0-desktop",
"/consoleloggerparameters:NoSummary"
Expand All @@ -46,7 +46,7 @@
"type": "process",
"args": [
"publish",
"${workspaceFolder}/dsdsds/dsdsds.csproj",
"${workspaceFolder}/Commerce/Commerce.csproj",
"/property:GenerateFullPaths=true",
"/property:TargetFramework=net8.0-desktop",
"/consoleloggerparameters:NoSummary"
Expand Down

0 comments on commit 1adf6fb

Please sign in to comment.