This library implements the SemVersion
class, which
complies with v2.0.0 of the spec from http://semver.org.
With the NuGet console:
Install-Package semver
var version = SemVersion.Parse("1.1.0-rc.1+nightly.2345");
if(version >= "1.0")
Console.WriteLine("released version {0}!", version)