aboutsummaryrefslogtreecommitdiff
path: root/src/ext
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2025-08-28 13:39:49 -0700
committerRob Mensching <rob@firegiant.com>2025-10-15 23:12:34 -0700
commit7257b8ce2aa4941d61b3706b2a9dfad5b464c305 (patch)
tree04248360410052c3f686bdc0a169455c156c10b2 /src/ext
parentbad9a76bd2a1c9b35f220168a0c888b541810280 (diff)
downloadwix-7257b8ce2aa4941d61b3706b2a9dfad5b464c305.tar.gz
wix-7257b8ce2aa4941d61b3706b2a9dfad5b464c305.tar.bz2
wix-7257b8ce2aa4941d61b3706b2a9dfad5b464c305.zip
Add missing READMEs to .nupkgs
Diffstat (limited to 'src/ext')
-rw-r--r--src/ext/Bal/wixext-backward-compatible/README.md56
-rw-r--r--src/ext/Bal/wixext-backward-compatible/WixToolset.Bal.wixext.nuspec2
2 files changed, 58 insertions, 0 deletions
diff --git a/src/ext/Bal/wixext-backward-compatible/README.md b/src/ext/Bal/wixext-backward-compatible/README.md
new file mode 100644
index 00000000..7c3bf97e
--- /dev/null
+++ b/src/ext/Bal/wixext-backward-compatible/README.md
@@ -0,0 +1,56 @@
1# WixToolset.Bal.wixext - Bootstrapper Applications WiX Toolset Extension
2
3This WiX Extension was renamed. Use `WixToolset.BootstrapperApplications.wixext` instead.
4
5- [WixStandardBootstrapperApplication](https://www.nuget.org/packages/WixToolset.BootstrapperApplications.wixext)
6
7[Web Site][web] | [Documentation][docs] | [Issue Tracker][issues] | [Discussions][discussions]
8
9## Open Source Maintenance Fee
10
11To ensure the long-term sustainability of this project, users of this package who generate revenue must pay an [Open Source Maintenance Fee][osmf]. While the source code is freely available under the terms of the [LICENSE][license], this package and other aspects of the project require [adherence to the Open Source Maintenance Fee EULA][eula].
12
13To pay the Maintenance Fee, [become a Sponsor](https://github.com/sponsors/wixtoolset).
14
15
16## Getting started
17
18Add the WiX Extension as a PackageReference to your .wixproj:
19
20```
21<Project Sdk="WixToolset.Sdk/6.0.2">
22 <ItemGroup>
23 <PackageReference Include="WixToolset.BootstrapperApplications.wixext" Version="6.0.2" />
24 </ItemGroup>
25</Project>
26```
27
28Then add the namespace and bootstrapper application of choice:
29
30```
31<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
32 xmlns:bal="http://wixtoolset.org/schemas/v4/wxs/bal">
33 <Bundle BundleId="AcmeCorp.Example" Name="Example Bundle" Version="0.0.0.1" Manufacturer="ACME Corporation">
34 <BootstrapperApplication>
35 <bal:WixStandardBootstrapperApplication LicenseUrl="http://wixtoolset.org/about/license/" Theme="hyperlinkLicense" />
36 </BootstrapperApplication>
37 </Bundle>
38</Wix>
39```
40
41## Additional resources
42
43* [WiX Website][web]
44* [WiX Documentation][docs]
45* [WiX Issue Tracker][issues]
46* [WiX Discussions][discussions]
47
48
49[web]: https://www.firegiant.com/wixtoolset/
50[docs]: https://docs.firegiant.com/wixtoolset/
51[issues]: https://github.com/wixtoolset/issues/issues
52[discussions]: https://github.com/orgs/wixtoolset/discussions
53[sdk]: https://www.nuget.org/packages/WixToolset.Sdk/
54[osmf]: https://opensourcemaintenancefee.org/
55[license]: https://github.com/wixtoolset/wix/blob/main/LICENSE.TXT
56[eula]: https://github.com/wixtoolset/wix/blob/main/OSMFEULA.txt
diff --git a/src/ext/Bal/wixext-backward-compatible/WixToolset.Bal.wixext.nuspec b/src/ext/Bal/wixext-backward-compatible/WixToolset.Bal.wixext.nuspec
index 2bebad30..2af1e037 100644
--- a/src/ext/Bal/wixext-backward-compatible/WixToolset.Bal.wixext.nuspec
+++ b/src/ext/Bal/wixext-backward-compatible/WixToolset.Bal.wixext.nuspec
@@ -7,6 +7,7 @@
7 <description>$description$</description> 7 <description>$description$</description>
8 <authors>$authors$</authors> 8 <authors>$authors$</authors>
9 <icon>icon.png</icon> 9 <icon>icon.png</icon>
10 <readme>README.md</readme>
10 <license type="file">OSMFEULA.txt</license> 11 <license type="file">OSMFEULA.txt</license>
11 <requireLicenseAcceptance>true</requireLicenseAcceptance> 12 <requireLicenseAcceptance>true</requireLicenseAcceptance>
12 <tags>$packageTags$</tags> 13 <tags>$packageTags$</tags>
@@ -18,6 +19,7 @@
18 <files> 19 <files>
19 <file src="$eulaTxt$" /> 20 <file src="$eulaTxt$" />
20 <file src="$iconPng$" /> 21 <file src="$iconPng$" />
22 <file src="$projectFolder$\README.md" />
21 <file src="$projectFolder$\WixToolset.Bal.wixext.targets" target="build" /> 23 <file src="$projectFolder$\WixToolset.Bal.wixext.targets" target="build" />
22 <file src="WixToolset.BootstrapperApplications.wixext.dll" target="$wixExtensionPackageFolder$" /> 24 <file src="WixToolset.BootstrapperApplications.wixext.dll" target="$wixExtensionPackageFolder$" />
23 </files> 25 </files>