Skip to content

Instantly share code, notes, and snippets.

@MattMS
Created March 1, 2023 00:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MattMS/615644d50ecfa042d00dbb1a6349b419 to your computer and use it in GitHub Desktop.
Save MattMS/615644d50ecfa042d00dbb1a6349b419 to your computer and use it in GitHub Desktop.
Get locally installed .NET 6+ runtimes
dotnet --list-runtimes | %{if ($_ -match '^([^ ]+) (\d+\.\d+\.\d+) ') {[PSCustomObject]@{Name = $Matches[1]; Version = [version]$Matches[2]}}} | ? Version -gt ([version]"6.0.0")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment