Now that semantic version numbers (semver) are becoming ubiquitous, it would be nice to be able to do something like
$ [semver] '1.2.3-preview-02+build42'
Major Minor Patch Label
----- ----- ----- -----
1 2 3 preview-02+build42
instead of what you currently need to do:
$ [System.Management.Automation.SemanticVersion] '1.2.3-preview-02+build42'
Now that semantic version numbers (semver) are becoming ubiquitous, it would be nice to be able to do something like
instead of what you currently need to do: