Is there a NuGet package that contains a semantic version parser in .NET?

.net, c#, parsing, semantic-versioning

Solution

It turns out that the answer was right under my nose. NuGet.Core itself contains a SemanticVersion class with a TryParse method.

And, you can, in fact, install NuGet.Core via NuGet. :P

Updated (4/30/2018): changed the link per guidance from @JeroenWiertPluimers.

Problem

I found this blog post and the related Gist. The author does not appear to have created a corresponding NuGet package. Anyone aware of a NuGet package that already exists? For reference, here is the specification for semantic versioning.

Original source