当前位置: 首页>>代码示例>>C#>>正文


C# Commit.GetTruncatedCommitIdAsUInt16方法代码示例

本文整理汇总了C#中LibGit2Sharp.Commit.GetTruncatedCommitIdAsUInt16方法的典型用法代码示例。如果您正苦于以下问题:C# Commit.GetTruncatedCommitIdAsUInt16方法的具体用法?C# Commit.GetTruncatedCommitIdAsUInt16怎么用?C# Commit.GetTruncatedCommitIdAsUInt16使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在LibGit2Sharp.Commit的用法示例。


在下文中一共展示了Commit.GetTruncatedCommitIdAsUInt16方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetIdAsVersionHelper

        /// <summary>
        /// Encodes a commit from history in a <see cref="Version"/>
        /// so that the original commit can be found later.
        /// </summary>
        /// <param name="commit">The commit whose ID and position in history is to be encoded.</param>
        /// <param name="versionOptions">The version options applicable at this point (either from commit or working copy).</param>
        /// <param name="repoRelativeProjectDirectory">The repo-relative project directory for which to calculate the version.</param>
        /// <param name="versionHeight">
        /// The version height, previously calculated by a call to <see cref="GetVersionHeight(Commit, string)"/>
        /// with the same value for <paramref name="repoRelativeProjectDirectory"/>.
        /// </param>
        /// <returns>
        /// A version whose <see cref="Version.Build"/> and
        /// <see cref="Version.Revision"/> components are calculated based on the commit.
        /// </returns>
        /// <remarks>
        /// In the returned version, the <see cref="Version.Build"/> component is
        /// the height of the git commit while the <see cref="Version.Revision"/>
        /// component is the first four bytes of the git commit id (forced to be a positive integer).
        /// </remarks>
        /// <returns></returns>
        private static Version GetIdAsVersionHelper(Commit commit, VersionOptions versionOptions, string repoRelativeProjectDirectory, int? versionHeight)
        {
            var baseVersion = versionOptions?.Version?.Version ?? Version0;

            // The compiler (due to WinPE header requirements) only allows 16-bit version components,
            // and forbids 0xffff as a value.
            // The build number is set to the git height. This helps ensure that
            // within a major.minor release, each patch has an incrementing integer.
            // The revision is set to the first two bytes of the git commit ID.
            if (!versionHeight.HasValue)
            {
                versionHeight = commit != null
                    ? commit.GetHeight(c => CommitMatchesMajorMinorVersion(c, baseVersion, repoRelativeProjectDirectory))
                    : 0;
            }

            int build = versionHeight.Value + (versionOptions?.BuildNumberOffset ?? 0);
            Verify.Operation(build <= MaximumBuildNumberOrRevisionComponent, "Git height is {0}, which is greater than the maximum allowed {0}.", build, MaximumBuildNumberOrRevisionComponent);
            int revision = commit != null
                ? Math.Min(MaximumBuildNumberOrRevisionComponent, commit.GetTruncatedCommitIdAsUInt16())
                : 0;

            return new Version(baseVersion.Major, baseVersion.Minor, build, revision);
        }
开发者ID:jthelin,项目名称:Nerdbank.GitVersioning,代码行数:45,代码来源:GitExtensions.cs


注:本文中的LibGit2Sharp.Commit.GetTruncatedCommitIdAsUInt16方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。