Skip to content
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

C#: Turn RuntimeVersion into a record type. #13688

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

michaelnebel
Copy link
Contributor

No description provided.

@github-actions github-actions bot added the C# label Jul 7, 2023
@@ -22,7 +22,7 @@ internal partial class Runtime

public Runtime(IDotNet dotNet) => this.dotNet = dotNet;

internal sealed class RuntimeVersion : IComparable<RuntimeVersion>
internal record RuntimeVersion : IComparable<RuntimeVersion>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@michaelnebel Somewhat independently from this change. I think we're not using the IComparable<> anywhere in the application. We seem to rely on the order of the runtimes that the dotnet CLI is returning to us, which happens to be chronological, and therefore we're using the latest installed version.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants