dotnet-installer/build_projects/shared-build-targets-utils/Utils/BuildVersion.cs

13 lines
385 B
C#
Raw Normal View History

// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
using System.Collections.Generic;
2016-04-22 02:18:05 +00:00
namespace Microsoft.DotNet.Cli.Build
2016-02-02 18:04:50 +00:00
{
public class BuildVersion : Version
2016-02-02 18:04:50 +00:00
{
public string VersionSuffix => $"{ReleaseSuffix}-{CommitCountString}";
2016-02-02 18:04:50 +00:00
}
}