-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
PowerShellWixExtension.nuspec
27 lines (26 loc) · 1.31 KB
/
PowerShellWixExtension.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata minClientVersion="2.7">
<id>PowerShellWixExtension</id>
<version>2.1.0</version>
<title>Wix Extension for PowerShell</title>
<summary>Wix Extension that allows running PowerShell scripts</summary>
<description>An extension for Wix that allows running PowerShell scripts, either from .ps1 files included in the MSI, or by embedding PowerShell script directly</description>
<authors>David Gardiner</authors>
<owners>David Gardiner</owners>
<projectUrl>https://github.com/flcdrg/PowerShellWixExtension/</projectUrl>
<license type="file">LICENSE.txt</license>
<repository type="git" url="https://github.com/flcdrg/PowerShellWixExtension" />
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>WiX PowerShell MSI Installer WixToolset XML</tags>
<releaseNotes>$releasenotes$</releaseNotes>
<readme>docs\README.md</readme>
</metadata>
<files>
<file src="NuGet\content\*.*" target="content" />
<file src="NuGet\tools\**\*.*" target="tools" />
<file src="LICENSE.txt" />
<file src="MSRL-LICENSE.txt" />
<file src="README.md" target="docs\" />
</files>
</package>