Refactor devcontainer configuration to use dynamic workspace folder and add missing extensions
All checks were successful
Manuelles Build mit ISE / build (push) Successful in 42s

This commit is contained in:
2025-04-23 08:33:47 +00:00
parent 58bd5a78c0
commit a9ddd1a12d

View File

@@ -8,16 +8,18 @@
],
"customizations": {
"vscode": {
"extensions": [
"p2l2.vhdl-by-hgb",
"eamodio.gitlens"
],
"settings": {
"terminal.integrated.defaultProfile.linux": "bash"
}
}
},
"remoteUser": "xilinx",
"mounts": [
"source=${localWorkspaceFolder},target=/workspaces/project,type=bind"
],
"workspaceFolder": "/workspaces/project",
"workspaceMount": "source=${localWorkspaceFolder},target=/workspaces/${localWorkspaceFolderBasename},type=bind",
"workspaceFolder": "/workspaces/${localWorkspaceFolderBasename}",
"features": {},
"forwardPorts": [10000]
}