| File: ChangeEntryPointLibraryName.cs | Web Access | 
| Project: ..\..\..\src\Tasks\sdk-tasks\sdk-tasks.csproj (sdk-tasks) | 
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #nullable disable using Microsoft.Build.Framework; namespace Microsoft.DotNet.Build.Tasks { public class ChangeEntryPointLibraryName : Task { [Required] public string DepsFile { get; set; } [Required] public string NewName { get; set; } public override bool Execute() { PublishMutationUtilities.ChangeEntryPointLibraryName(DepsFile, NewName); return true; } } }  |