2016-06-29 21:10:55 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.IO.Compression;
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
using System.Net.Http;
|
2016-07-01 18:02:26 +00:00
|
|
|
using Microsoft.Build.Framework;
|
2016-06-29 21:10:55 +00:00
|
|
|
using Microsoft.Build.Utilities;
|
|
|
|
using Microsoft.DotNet.Cli.Build.Framework;
|
|
|
|
using Microsoft.DotNet.InternalAbstractions;
|
|
|
|
|
|
|
|
using static Microsoft.DotNet.Cli.Build.Framework.BuildHelpers;
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|