2016-07-15 15:31:50 +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.
|
|
|
|
|
2016-07-01 18:02:26 +00:00
|
|
|
using Microsoft.Build.Framework;
|
2016-06-29 21:10:55 +00:00
|
|
|
using Microsoft.Build.Utilities;
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Cli.Build
|
|
|
|
{
|
|
|
|
public class ChangeEntryPointLibraryName : Task
|
|
|
|
{
|
2016-06-30 21:17:47 +00:00
|
|
|
[Required]
|
2016-06-29 21:10:55 +00:00
|
|
|
public string DepsFile { get; set; }
|
|
|
|
|
2016-06-30 21:17:47 +00:00
|
|
|
[Required]
|
2016-06-29 21:10:55 +00:00
|
|
|
public string NewName { get; set; }
|
|
|
|
|
|
|
|
public override bool Execute()
|
|
|
|
{
|
|
|
|
PublishMutationUtilties.ChangeEntryPointLibraryName(DepsFile, NewName);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|