2016-07-15 08:31:50 -07: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.
|
|
|
|
|
2016-07-01 11:02:26 -07:00
|
|
|
using Microsoft.Build.Framework;
|
2016-06-29 14:10:55 -07:00
|
|
|
using Microsoft.Build.Utilities;
|
|
|
|
|
|
|
|
using static Microsoft.DotNet.Cli.Build.Framework.BuildHelpers;
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
|
|
{
|
|
|
|
public class CrossgenDirectory : Task
|
|
|
|
{
|
2016-06-30 14:17:47 -07:00
|
|
|
[Required]
|
|
|
|
public string CoreCLRVersion { get; set; }
|
2016-06-29 14:10:55 -07:00
|
|
|
|
2016-06-30 14:17:47 -07:00
|
|
|
[Required]
|
|
|
|
public string JitVersion { get; set; }
|
|
|
|
|
|
|
|
[Required]
|
2016-06-29 14:10:55 -07:00
|
|
|
public string SharedFrameworkNameVersionPath { get; set; }
|
|
|
|
|
2016-06-30 14:17:47 -07:00
|
|
|
[Required]
|
2016-06-29 14:10:55 -07:00
|
|
|
public string SdkOutputDirectory { get; set; }
|
|
|
|
|
|
|
|
public override bool Execute()
|
|
|
|
{
|
2016-06-30 17:34:11 -07:00
|
|
|
var crossgenUtil = new Crossgen(CoreCLRVersion, JitVersion);
|
2016-06-30 14:17:47 -07:00
|
|
|
|
|
|
|
crossgenUtil.CrossgenDirectory(SharedFrameworkNameVersionPath, SdkOutputDirectory);
|
2016-06-29 14:10:55 -07:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|