2016-04-04 17:51:36 -07: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 14:22:11 -07:00
|
|
|
public class DotnetCommand : TestCommand
|
2016-04-04 17:51:36 -07:00
|
|
|
{
|
|
|
|
public DotnetCommand()
|
2018-11-12 11:31:10 -08:00
|
|
|
: this(RepoDirectoriesProvider.DotnetUnderTest)
|
2016-04-04 17:51:36 -07:00
|
|
|
{
|
2017-04-06 13:43:26 -07:00
|
|
|
}
|
2016-04-04 17:51:36 -07:00
|
|
|
|
2017-04-06 13:43:26 -07:00
|
|
|
public DotnetCommand(string dotnetUnderTest)
|
|
|
|
: base(dotnetUnderTest)
|
|
|
|
{
|
2016-04-04 17:51:36 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|