dotnet-installer/test/Microsoft.DotNet.Tools.Tests.Utilities/Commands/DotnetCommand.cs
Piotr Puszkiewicz f318ac33f9 Unseal!
2017-03-14 14:22:11 -07:00

16 lines
416 B
C#

// 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
{
public class DotnetCommand : TestCommand
{
public DotnetCommand()
: base(DotnetUnderTest.FullName)
{
}
}
}