Last active
March 17, 2020 20:28
-
-
Save ball6847/51fda4469257d0483d333f0b4ebdfc01 to your computer and use it in GitHub Desktop.
vscode devcontainer dotnet - put these files in .devcontainer directory at project root
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"name": ".NET Core 1.1.4", | |
"dockerFile": "Dockerfile", | |
"appPort": [5000, 5001], | |
"settings": { | |
"terminal.integrated.shell.linux": "/bin/bash" | |
}, | |
"mounts": [ | |
], | |
"remoteEnv": { | |
"ASPNETCORE_Kestrel__Endpoints__Http__Url": "http://*:5000" | |
}, | |
"remoteUser": "vscode", | |
"extensions": ["ms-vscode.csharp"] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ball6847/vscode-remote-dotnet:1.1.4 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment