From 6dd9a69b8874bebf904c3293df8e49f84103517a Mon Sep 17 00:00:00 2001 From: Max Hauser Date: Thu, 10 Jan 2013 07:37:09 +0100 Subject: [PATCH] fix readme, add github reference to nuspec --- README.md | 12 ++++++++---- Semver/Semver.nuspec | 2 +- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 6c557bb..a9f3323 100644 --- a/README.md +++ b/README.md @@ -4,13 +4,17 @@ A semantic version library for .Net This class library implements the SemVersion class, that complies to v2.0.0-rc.1 of the spec from http://semver.org. -Parsing --------- +**Installation** + +With the nuget console: + + Package-Install semver + +**Parsing** var version = SemVersion.Parse("1.1.0-rc.1+nightly.2345"); -Comparing ---------- +**Comparing** if(version >= "1.0") Console.WriteLine("released version {0}!", version) diff --git a/Semver/Semver.nuspec b/Semver/Semver.nuspec index 246480a..d468a2c 100644 --- a/Semver/Semver.nuspec +++ b/Semver/Semver.nuspec @@ -9,7 +9,7 @@ http://max.mit-license.org/ false A semver implementation in .Net based on the v2.0.0-rc.1 of the spec found at http://semver.org/. - + Github repository: https://github.com/maxhauser/semver. Copyright 2013 semver semantic version