aboutsummaryrefslogtreecommitdiff
path: root/src/WixToolset.Extensibility/Data/ICommandLineCommand.cs
blob: 1146d40ab46c97f7d8a6bcd39a6e54db567c2ff1 (plain)
1
2
3
4
5
6
7
8
9
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.

namespace WixToolset.Extensibility.Data
{
    public interface ICommandLineCommand
    {
        int Execute();
    }
}