dotnet-installer/build_projects/dotnet-cli-build/GenerateMsiVersion.cs

42 lines
1 KiB
C#
Raw Normal View History

2017-02-10 20:13:44 +00:00
// 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 Microsoft.Build.Framework;
using Microsoft.Build.Utilities;
namespace Microsoft.DotNet.Cli.Build
{
public class GenerateMsiVersion : Task
{
[Required]
public int CommitCount { get; set; }
[Required]
public int VersionMajor { get; set; }
[Required]
public int VersionMinor { get; set; }
[Required]
public int VersionPatch { get; set; }
[Output]
public string MsiVersion { get; set; }
public override bool Execute()
{
2017-05-11 13:59:38 +00:00
var buildVersion = new Version()
2017-02-10 20:13:44 +00:00
{
Major = VersionMajor,
Minor = VersionMinor,
Patch = VersionPatch,
CommitCount = CommitCount
};
MsiVersion = buildVersion.GenerateMsiVersion();
return true;
}
}
}