// 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 System.Diagnostics;
using System.Xml.Serialization;
namespace Microsoft.DotNet.Cli.ToolPackage.ToolConfigurationDeserialization;
[Serializable]
[DebuggerStepThrough]
[XmlType(AnonymousType = true)]
public class DotNetCliToolCommand
{
[XmlAttribute]
public string Name { get; set; }
[XmlAttribute]
public string EntryPoint { get; set; }
[XmlAttribute]
public string Runner { get; set; }
}
|