-
Notifications
You must be signed in to change notification settings - Fork 377
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
Use dotnet-install.sh in .NET feature #628
Use dotnet-install.sh in .NET feature #628
Conversation
@microsoft-github-policy-service agree |
Note about using the When .NET 8 is released in Nov 2023, the LTS support channel will contain the current latest supported release, until .NET 9 is released in Nov 2024, then you should use the STS support channel. Running The implemented workaround fetches the
Another small note: it's not currently possible to pass a |
Awesome PR. Thank you for explaining the versioning and configuration changes so clearly. This looks very similar to my PR, and I agree with its direction. Microsoft maintains Also great to see you using scenario tests to prove this works for users. I'm looking forward to hearing feedback from the Dev Containers team on the bump to v2, |
@jungaretti I realized it's not clear from the changes that I used your script as a starting point, you can see the changes more clearly here I see I may have accidentally removed the SHA256 verification. My thinking is rather than verifying the SHA256 digest, wouldn't it be better to include a copy of the script in the feature? That way, upstream changes won't break the feature. |
Yes, this makes sense to me. Either way, we need to update the script to respond to upstream changes: updating the hash or patching the copied script. Patching the copied script is much less disruptive! and you're right, the SHA could break at any moment without warning. |
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.
Hi 👋
Thank you so much for taking the time to contribute this spectacular change. We really appreciate it! Good job @sliekens @jungaretti 🎉
Left some thoughts/comments, let me know what you think or how I could help.
Co-authored-by: Samruddhi Khandale <[email protected]>
Co-authored-by: Samruddhi Khandale <[email protected]>
Co-authored-by: Samruddhi Khandale <[email protected]>
@samruddhikhandale @jungaretti what do you think about adding https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-environment-variables |
@sliekens |
Adding @sliekens Out of curiosity, how/who uses this env variable? From a quick search, looks like this only signals a developer that .NET is running in the container and doesn't have any other use case (could be wrong)? |
@samruddhikhandale I found an example where it is used to redirect build output to a different folder based on whether https://github.com/dotnet/dotnet-docker/blob/main/samples/Directory.Build.props The reason for this is stretching the limits of my MSBuild knowledge, but, I think this configuration makes it so you can switch between running Other than that, I think perhaps .NET itself does some things differently when this environment variable is set. There is an open issue dotnet/dotnet-docker#3997 to document the purpose of DOTNET_RUNNING_IN_CONTAINER and I think currently @richlander is the best person to answer this question. |
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.
Love the changes! This looks great. Nice work 🎉
Agreed, looking good! |
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.
Super cool ✨
Thank you so much for contributing this PR and reiterating based on feedbacks, we appreciate it 🚀
Co-authored-by: Samruddhi Khandale <[email protected]>
Head branch was pushed to by a user without write access
@samruddhikhandale didn't see you were trying to merge, sorry. I added the workflow for updating the vendor script 37c220f. I tested it against my fork, it created this PR 🔗sliekens#3. |
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.
No worries, left some minor comments. Thanks for adding the workflow
Co-authored-by: Samruddhi Khandale <[email protected]>
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! Let me know when you are ready, I can help merge this PR if necessary.
I'm pretty happy with the state of this branch, thanks to everyone who reviewed and gave feedback! |
Enhancements to .NET Feature and improved configuration options
This pull request builds upon the exceptional work done by @jungaretti in #467. It contains significant changes to the .NET feature to ensure better compatibility with multiple .NET versions (#389). Additionally, the installation process has been streamlined by exclusively utilizing dotnet-install.sh and discontinuing the support for installing .NET via apt. This change aims to simplify the installation process and remove the complexities associated with hybrid installations.
Major changes:
New configuration options:
runtimeOnly
withdotnetRuntimeVersions
andaspNetCoreRuntimeVersions
dotnet-install.sh
.Valid feature configurations:
With these changes, the following
version
andadditionalVersions
configurations are now considered valid:latest
(default)lts
none
3.0
3.1
6.0.3xx
6.0.413
8.0.100-preview.7.23376.3
Additionally you may request
dotnetRuntimeVersions
andaspNetCoreRuntimeVersions
, which use a slightly different version scheme:latest
lts
3.0
3.1
6.0.21
8.0.0-preview.7.23375.6
For a runtime-only installation, you can set the
version
to"none"
to skip installing the SDK.Reasoning behind changes:
Removing ability to specify only major version ('X'):
I decided to remove the ability to specify only a major version ('X') since
dotnet-install.sh
does not directly support this configuration. Previously, the feature would fallback to the oldest minor version ('X.0'), which was counterintuitive. To avoid confusion and maintain clarity, I chose to remove this option and look forward to a resolution of this behavior in the dotnet-install script itself.New configuration options for runtime-only installations:
I've replaced the
runtimeOnly
option with separate options for dotnet and aspnetcore runtime version for several reasons:additionalVersions
, as users could either get all SDKs or all Runtimes.Testing improvements:
For comprehensive testing, I've included additional test projects, each targeting a different framework version. These test scenarios progressively utilize newer language features, such as top-level statements, implicit usings, and raw strings, in each version. The tests ensure that the example projects compile and run smoothly under the vscode remote user (except
test.sh
, which runs as root).I believe these changes will significantly enhance the user experience and improve the overall stability and compatibility of the .NET feature. I welcome feedback and suggestions to continue refining and enhancing this crucial functionality. Thank you for your attention and support in reviewing this PR.
Closes #464
Fixes #293
Fixes #389