-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Fix DevContainer File #71127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix DevContainer File #71127
Conversation
Get our devcontainer up to date with our current setup. Mostly just moving to the 8.0 images. Verified this works on my local setup using roslyn in a Docker volume
"powershell.startAutomatically": false, | ||
// ms-azure-devops.azure-pipelines settings | ||
"azure-pipelines.customSchemaFile": ".vscode/dnceng-schema.json" | ||
"customizations": { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Newer versions of devcontainer.json wanted vscode specific settings under a vscode specific section. Did not change any settings here, just moved them under this section.
}, | ||
"extensions": [ | ||
"ms-dotnettools.csharp", | ||
"ms-dotnettools.csdevkit", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The one setting I did change was adding DevKit into the default extension list.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤷 seems reasonable!
Get our devcontainer up to date with our current setup. Mostly just moving to the 8.0 images. Verified this works on my local setup using roslyn in a Docker volume