aboutsummaryrefslogtreecommitdiff
path: root/src/ext/Dependency/wixext/DependencyExtensionData.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/Dependency/wixext/DependencyExtensionData.cs')
-rw-r--r--src/ext/Dependency/wixext/DependencyExtensionData.cs29
1 files changed, 29 insertions, 0 deletions
diff --git a/src/ext/Dependency/wixext/DependencyExtensionData.cs b/src/ext/Dependency/wixext/DependencyExtensionData.cs
new file mode 100644
index 00000000..2f30c2bf
--- /dev/null
+++ b/src/ext/Dependency/wixext/DependencyExtensionData.cs
@@ -0,0 +1,29 @@
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
3namespace WixToolset.Dependency
4{
5 using WixToolset.Data;
6 using WixToolset.Extensibility;
7
8 /// <summary>
9 /// The WiX Toolset Dependency Extension.
10 /// </summary>
11 public sealed class DependencyExtensionData : BaseExtensionData
12 {
13 /// <summary>
14 /// Gets the default culture.
15 /// </summary>
16 /// <value>The default culture.</value>
17 public override string DefaultCulture => "en-US";
18
19 /// <summary>
20 /// Gets the contained .wixlib content.
21 /// </summary>
22 /// <param name="symbolDefinitions">Strong typed symbold definitions.</param>
23 /// <returns>The .wixlib.</returns>
24 public override Intermediate GetLibrary(ISymbolDefinitionCreator symbolDefinitions)
25 {
26 return Intermediate.Load(typeof(DependencyExtensionData).Assembly, "WixToolset.Dependency.dependency.wixlib", symbolDefinitions);
27 }
28 }
29}