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;
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
|
|
{
|
|
|
|
public class ChangeEntryPointLibraryName : Task
|
|
|
|
{
|
2016-06-30 14:17:47 -07:00
|
|
|
[Required]
|
2016-06-29 14:10:55 -07:00
|
|
|
public string DepsFile { get; set; }
|
|
|
|
|
2016-06-30 14:17:47 -07:00
|
|
|
[Required]
|
2016-06-29 14:10:55 -07:00
|
|
|
public string NewName { get; set; }
|
|
|
|
|
|
|
|
public override bool Execute()
|
|
|
|
{
|
|
|
|
PublishMutationUtilties.ChangeEntryPointLibraryName(DepsFile, NewName);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|