Exemple #1
0
        public static ReleaseVersion Update(Repository repo, string outputPath)
        {
            NewRelease = GetNextReleaseNumber(repo);

            var nextReleaseTag = String.Format(ReleaseTagFormat, NewRelease.ToString());

            repo.TagCurrent(nextReleaseTag);

            CreateMetaXml(outputPath);

            return(new ReleaseVersion(NewRelease));
        }