Skip to content
This repository has been archived by the owner on Dec 9, 2021. It is now read-only.
/ semver Public archive
forked from WalkerCodeRanger/semver

A semver implementation in .Net based on the v2.0.0 of the spec found at http://semver.org/.

License

Notifications You must be signed in to change notification settings

umm/semver

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

52 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Build status

A semantic version library for .Net

This class library implements the SemVersion class, that complies to v2.0.0 of the spec from http://semver.org.

Installation

With the nuget console:

 Install-Package semver

Parsing

 var version = SemVersion.Parse("1.1.0-rc.1+nightly.2345");

Comparing

 if(version >= "1.0")
     Console.WriteLine("released version {0}!", version)

About

A semver implementation in .Net based on the v2.0.0 of the spec found at http://semver.org/.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C# 100.0%