BuildRelease.Program.ExtractTagVersionAndName C# (CSharp) Method

ExtractTagVersionAndName() public static method

Extracts the version and name part out of the specified tag.
public static ExtractTagVersionAndName ( string tag ) : string
tag string date-version-name
return string
        public static string ExtractTagVersionAndName(string tag)
        {
            return tag.Substring(tag.IndexOf('-') + 1);
        }