2016-04-05 00:51:36 +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.
|
|
|
|
|
|
|
|
using Microsoft.DotNet.Cli.Utils;
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.Tools.Test.Utilities
|
|
|
|
{
|
2017-03-14 21:22:11 +00:00
|
|
|
public class DotnetCommand : TestCommand
|
2016-04-05 00:51:36 +00:00
|
|
|
{
|
|
|
|
public DotnetCommand()
|
2017-04-06 20:43:26 +00:00
|
|
|
: this(DotnetUnderTest.FullName)
|
2016-04-05 00:51:36 +00:00
|
|
|
{
|
2017-04-06 20:43:26 +00:00
|
|
|
}
|
2016-04-05 00:51:36 +00:00
|
|
|
|
2017-04-06 20:43:26 +00:00
|
|
|
public DotnetCommand(string dotnetUnderTest)
|
|
|
|
: base(dotnetUnderTest)
|
|
|
|
{
|
2016-04-05 00:51:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|