Harrison Deng
7a78dcb339
Some checks reported errors
ydeng/props/pipeline/head Something is wrong with the build of this commit
31 lines
732 B
JSON
31 lines
732 B
JSON
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
|
|
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
|
|
{
|
|
"name": "Debian",
|
|
"build": {
|
|
"context": "..",
|
|
"dockerfile": "Dockerfile"
|
|
},
|
|
|
|
"customizations": {
|
|
"vscode": {
|
|
"extensions": [
|
|
"ms-dotnettools.vscode-dotnet-runtime",
|
|
"svelte.svelte-vscode",
|
|
"syler.sass-indented",
|
|
"dbaeumer.vscode-eslint",
|
|
"ms-dotnettools.csharp"
|
|
],
|
|
"settings": {
|
|
"python.defaultInterpreterPath": "/opt/conda/bin/python",
|
|
"dotnet.dotnetPath": "/opt/conda/lib/dotnet/",
|
|
"omnisharp.dotNetCliPaths": [
|
|
"/opt/conda/lib/dotnet/dotnet"
|
|
]
|
|
}
|
|
}
|
|
},
|
|
|
|
"postCreateCommand": "bash conda init"
|
|
|
|
} |