aboutsummaryrefslogtreecommitdiff
path: root/src/wixext/PowerShellExtensionFactory.cs
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-01-19 13:03:02 -0600
committerSean Hall <r.sean.hall@gmail.com>2019-01-19 13:08:19 -0600
commit985ba427f8cd12b7b74d62f83a8b304764e6077b (patch)
treea1e7aec475299134b9b77191bc6885e961c4a045 /src/wixext/PowerShellExtensionFactory.cs
parentdcfc3e2e369958d58dc070e3dbb8992e147b7a05 (diff)
downloadwix-985ba427f8cd12b7b74d62f83a8b304764e6077b.tar.gz
wix-985ba427f8cd12b7b74d62f83a8b304764e6077b.tar.bz2
wix-985ba427f8cd12b7b74d62f83a8b304764e6077b.zip
Integrate into latest v4
Diffstat (limited to 'src/wixext/PowerShellExtensionFactory.cs')
-rw-r--r--src/wixext/PowerShellExtensionFactory.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/wixext/PowerShellExtensionFactory.cs b/src/wixext/PowerShellExtensionFactory.cs
new file mode 100644
index 00000000..22a4ad88
--- /dev/null
+++ b/src/wixext/PowerShellExtensionFactory.cs
@@ -0,0 +1,17 @@
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.PowerShell
4{
5 using System;
6 using System.Collections.Generic;
7 using WixToolset.Extensibility;
8
9 public class PowerShellExtensionFactory : BaseExtensionFactory
10 {
11 protected override IEnumerable<Type> ExtensionTypes => new[]
12 {
13 typeof(PSCompiler),
14 typeof(PSExtensionData),
15 };
16 }
17}