forked from flcdrg/PowerShellWixExtension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PowerShellWixExtension.nuspec
25 lines (24 loc) · 1.2 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
<?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>
<licenseUrl>https://github.com/flcdrg/PowerShellWixExtension/blob/master/LICENSE.txt</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>WiX PowerShell MSI Installer WixToolset XML</tags>
<releaseNotes>
* Support ignoring PS failures (from @nirbar)
* Handle null results (from @nirbar)
</releaseNotes>
</metadata>
<files>
<file src="NuGet\content\*.*" target="content" />
<file src="NuGet\tools\**\*.*" target="tools" />
</files>
</package>