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