// 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.Harvesters { using System; using System.Collections.Generic; using WixToolset.Extensibility.Services; using WixToolset.Harvesters.Data; using WixToolset.Harvesters.Extensibility; /// /// Extension methods to use Harvesters services. /// public class HeatCommandLineFactory { /// /// Creates service. /// /// /// /// public static IHeatCommandLine CreateCommandLine(IServiceProvider serviceProvider, IEnumerable heatExtensions = null) { return new HeatCommandLine(serviceProvider, heatExtensions); } } }