Compare commits

..

2 Commits

Author SHA1 Message Date
a9ddd1a12d 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
2025-04-23 08:33:47 +00:00
58bd5a78c0 Add .history/ to .gitignore to exclude history files from version control 2025-04-23 08:33:38 +00:00
2 changed files with 7 additions and 4 deletions

View File

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

1
.gitignore vendored
View File

@@ -1 +1,2 @@
.locale/ .locale/
.history/