| 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.VisualStudio |
| 4 | { |
| 5 | using WixToolset.Data; |
| 6 | using WixToolset.Extensibility; |
| 7 | |
| 8 | public sealed class VSExtensionData : BaseExtensionData |
| 9 | { |
| 10 | public override Intermediate GetLibrary(ISymbolDefinitionCreator symbolDefinitions) |
| 11 | { |
| 12 | return Intermediate.Load(typeof(VSExtensionData).Assembly, "WixToolset.VisualStudio.vs.wixlib", symbolDefinitions); |
| 13 | } |
| 14 | } |
| 15 | } |