-
Notifications
You must be signed in to change notification settings - Fork 279
add devcontainer.json config for .net 6 -Codespaces #2149
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
Conversation
You can speed up the codespaces build by pre-building the devcontainer on the repository. This is a trick I often use with various https://github.com/azure-samples repos. |
@seesharprun thank you for your suggestion! That seems like it will help tremendously. I'll take a look and make the appropriate modifications. |
If you need to test the .NET tool locally, you will need to add the .NET tools directory to the PATH which is not automatically done in the SDK repos: {
...,
"remoteEnv": {
"PATH": "${containerEnv:PATH}:/root/.dotnet/tools"
}
} |
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.
LGTM, thank you for adding innovative ways of improving productivity!
Please add to the PR description the docs referenced for this change |
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.
Thanks for this addition, will definitely improve the code review experience! :)
…ify usage of properties. added new line at EOF.
…/data-api-builder into dev/sean/codespaces_config
azp run |
/azp run |
Why this change?
Enhance the PR review experience in GitHub Codespaces. Currently, review productivity is hindered because the default Codespaces container only has .NET 8. (While there is work to add .net 8 to dab, this fix enables .net6 (current) compat in codespaces).
Pros:
Cons:
What is this change?
.devcontainer
devcontainer.json
whichActual experience