Skip to content

Instantly share code, notes, and snippets.

View philipproplesch's full-sized avatar
🏠
Working from home

Philip Proplesch philipproplesch

🏠
Working from home
View GitHub Profile
@yadyn
yadyn / SemanticVersion.cs
Created May 6, 2011 18:11
Semantic Version C# class
using System;
using System.Collections.Generic;
using System.Text;
/// <summary>
/// Represents assembly, application, or other version information,
/// compliant with the Semantic Versioning specifications.
/// </summary>
/// <remarks>
/// See http://semver.org/ for specifications.