43 lines
1.2 KiB
C#
43 lines
1.2 KiB
C#
// 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;
|
|
using NuGet.Versioning;
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
{
|
|
public class GenerateMsiVersionFromFullVersion : Task
|
|
{
|
|
[Required]
|
|
public int VersionRevision { get; set; }
|
|
|
|
[Required]
|
|
public string VersionMajorMinorPatch { get; set; }
|
|
|
|
[Output]
|
|
public string MsiVersion { get; set; }
|
|
|
|
public override bool Execute()
|
|
{
|
|
MsiVersion = GenerateMsiVersion(VersionRevision, VersionMajorMinorPatch);
|
|
|
|
return true;
|
|
}
|
|
|
|
public static string GenerateMsiVersion(int versionRevision, string versionMajorMinorPatch)
|
|
{
|
|
var parsedVersion = NuGetVersion.Parse(versionMajorMinorPatch);
|
|
|
|
var buildVersion = new Version()
|
|
{
|
|
Major = parsedVersion.Major,
|
|
Minor = parsedVersion.Minor,
|
|
Patch = parsedVersion.Patch,
|
|
VersionRevision = versionRevision
|
|
};
|
|
|
|
return buildVersion.GenerateMsiVersion();
|
|
}
|
|
}
|
|
}
|