-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathWixNuGetPackager.nuspec
23 lines (23 loc) · 1.5 KB
/
WixNuGetPackager.nuspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0"?>
<package>
<metadata minClientVersion="2.5">
<id>WixNuGetPackager</id>
<version>0.1.5</version>
<title>WiX NuGet Packager</title>
<authors>Zany Ants</authors>
<owners>Zany Ants</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>https://github.com/zanyants/WixNuGetPackager</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<summary>Enables distribution of Windows Installer XML (WiX) libraries and extensions using NuGet packages.</summary>
<description>WixNuGetPackager enables the distribution of Windows Installer XML (WiX) libraries and extensions using NuGet packages. WixNuGetPackager is itself distributed as a NuGet package which can be installed in WiX library or extension projects. Once installed in a project, WixNuGetPackager extends the build process to generate a NuGet pacakge containing the compiled artefacts. This generated NuGet package can then be distributed and added to other WiX projects.
</description>
<copyright>Copyright 2016 Zany Ants</copyright>
<tags>wix nuget wixlib library extension distribution packaging</tags>
<releaseNotes>Prevent problems with concurrent nuget.exe download caused by MSBuild parallel invocation.</releaseNotes>
</metadata>
<files>
<file src="build\**" target="build" />
<file src="tools\**" target="tools" exclude="tools\nuget.exe"/> <!-- Exclude nuget.exe which might have been downloaded during development. -->
</files>
</package>