File: Commands\RemoveReferenceCommand.cs
Web Access
Project: ..\..\..\test\Microsoft.NET.TestFramework\Microsoft.NET.TestFramework.csproj (Microsoft.NET.TestFramework)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.DotNet.Cli.Utils;
 
namespace Microsoft.NET.TestFramework.Commands
{
    public class RemoveReferenceCommand : DotnetCommand
    {
        private string? _projectName = null;
 
        public RemoveReferenceCommand(ITestOutputHelper log, params string[] args) : base(log, args)
        {
        }
 
        public override CommandResult Execute(IEnumerable<string> args)
        {
            List<string> newArgs = new();
            newArgs.Add("remove");
            if (!string.IsNullOrEmpty(_projectName))
            {
                newArgs.Add(_projectName);
            }
            newArgs.Add("reference");
            newArgs.AddRange(args);
 
            return base.Execute(newArgs);
        }
 
 
        public RemoveReferenceCommand WithProject(string projectName)
        {
            _projectName = projectName;
            return this;
        }
    }
}