Skip to content

Instantly share code, notes, and snippets.

@ball6847
Last active March 17, 2020 20:28
Show Gist options
  • Save ball6847/51fda4469257d0483d333f0b4ebdfc01 to your computer and use it in GitHub Desktop.
Save ball6847/51fda4469257d0483d333f0b4ebdfc01 to your computer and use it in GitHub Desktop.
vscode devcontainer dotnet - put these files in .devcontainer directory at project root
{
"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"]
}
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