blob: 8e07070b43d64f3935fe81e299a8e343c571c553 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 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.Core
{
using WixToolset.Extensibility.Services;
/// <summary>
/// Class for creating <see cref="IWixToolsetCoreServiceProvider"/>.
/// </summary>
public static class WixToolsetServiceProviderFactory
{
/// <summary>
/// Creates a new <see cref="IWixToolsetCoreServiceProvider"/>.
/// </summary>
/// <returns>The created <see cref="IWixToolsetCoreServiceProvider"/></returns>
public static IWixToolsetCoreServiceProvider CreateServiceProvider()
{
return new WixToolsetServiceProvider();
}
}
}
|