diff options
Diffstat (limited to 'src/ext/Bal/wixstdfn/wixstdfn.nuspec')
-rw-r--r-- | src/ext/Bal/wixstdfn/wixstdfn.nuspec | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/ext/Bal/wixstdfn/wixstdfn.nuspec b/src/ext/Bal/wixstdfn/wixstdfn.nuspec new file mode 100644 index 00000000..d7e0de41 --- /dev/null +++ b/src/ext/Bal/wixstdfn/wixstdfn.nuspec | |||
@@ -0,0 +1,31 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
2 | <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | ||
3 | <metadata minClientVersion="4.0"> | ||
4 | <id>$id$</id> | ||
5 | <version>$version$</version> | ||
6 | <title>$title$</title> | ||
7 | <description>$description$</description> | ||
8 | <authors>$authors$</authors> | ||
9 | <icon>wix.png</icon> | ||
10 | <license type="expression">MS-RL</license> | ||
11 | <requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
12 | <copyright>$copyright$</copyright> | ||
13 | <projectUrl>$projectUrl$</projectUrl> | ||
14 | <repository type="$repositorytype$" url="$repositoryurl$" commit="$repositorycommit$" /> | ||
15 | <dependencies> | ||
16 | <group targetFramework="Native"> | ||
17 | <dependency id="WixToolset.BootstrapperApplicationApi" version="[$version$,5)" /> | ||
18 | <dependency id="WixToolset.DUtil" version="[$version$,5)" /> | ||
19 | </group> | ||
20 | </dependencies> | ||
21 | </metadata> | ||
22 | |||
23 | <files> | ||
24 | <file src="$projectFolder$\build\$id$.props" target="build\" /> | ||
25 | <file src="$projectFolder$\..\..\..\internal\images\wix.png" /> | ||
26 | <file src="$projectFolder$\inc\*" target="lib\native\include" /> | ||
27 | <file src="..\..\v141\x86\wixstdfn.lib" target="lib\native\v14\x86" /> | ||
28 | <file src="..\..\v141\x64\wixstdfn.lib" target="lib\native\v14\x64" /> | ||
29 | <file src="..\..\v141\ARM64\wixstdfn.lib" target="lib\native\v14\ARM64" /> | ||
30 | </files> | ||
31 | </package> | ||