diff --git a/src/ext/Bal/wixext/README.md b/src/ext/Bal/wixext/README.md new file mode 100644 index 000000000..a986cb0ee --- /dev/null +++ b/src/ext/Bal/wixext/README.md @@ -0,0 +1,7 @@ +# WixToolset.BootstrapperApplications + +WixToolset.BootstrapperApplications is a WiX extension that provides the WiX bootstrapper applications: + +- WixStdBA ([WixStandardBootstrapperApplication](https://wixtoolset.org/docs/schema/bal/wixstandardbootstrapperapplication/)), a bootstrapper application with support for custom themes +- WixIuiBA ([WixInternalUIBootstrapperApplication](https://wixtoolset.org/docs/schema/bal/wixinternaluibootstrapperapplication/)), a bootstrapper application for showing internal UI of Windows Installer packages +- WixPreqBA ([WixPrerequisiteBootstrapperApplication](https://wixtoolset.org/docs/schema/bal/wixprerequisitebootstrapperapplication/)), a secondary bootstrapper application for bootstrapping the prerequisites needed for a primary bootstrapper application diff --git a/src/ext/Bal/wixext/WixToolset.BootstrapperApplications.wixext.csproj b/src/ext/Bal/wixext/WixToolset.BootstrapperApplications.wixext.csproj index 3dd8d306e..de32ff4d0 100644 --- a/src/ext/Bal/wixext/WixToolset.BootstrapperApplications.wixext.csproj +++ b/src/ext/Bal/wixext/WixToolset.BootstrapperApplications.wixext.csproj @@ -7,6 +7,7 @@ WixToolset.BootstrapperApplications WiX Toolset BootstrapperApplications extension WiX Toolset BootstrapperApplications extension + README.md embedded @@ -16,6 +17,10 @@ + + + + diff --git a/src/ext/Bal/wixstdfn/README.md b/src/ext/Bal/wixstdfn/README.md new file mode 100644 index 000000000..0977ff428 --- /dev/null +++ b/src/ext/Bal/wixstdfn/README.md @@ -0,0 +1,11 @@ +# WixToolset.WixStandardBootstrapperApplicationFunctionApi + +WixToolset.WixStandardBootstrapperApplicationFunctionApi contains the SDK for building **BAFunctions** extensions for WixStdBA, the WiX Standard Bootstrapper Application for Burn bootstrapper bundles. + +BAFunctions are native-code DLLs (typically written in C++) that let you supplement the behavior of WixStdBA, rather than writing an entirely new BA to tweak existing BA behavior. + +## Sources +https://github.com/wixtoolset/wix/tree/HEAD/src/ext/Bal/wixstdfn + +## Samples +https://github.com/wixtoolset/wix/tree/HEAD/src/ext/Bal/Samples/bafunctions diff --git a/src/ext/Bal/wixstdfn/wixstdfn.nuspec b/src/ext/Bal/wixstdfn/wixstdfn.nuspec index 46a5de8c8..1924431ee 100644 --- a/src/ext/Bal/wixstdfn/wixstdfn.nuspec +++ b/src/ext/Bal/wixstdfn/wixstdfn.nuspec @@ -12,6 +12,7 @@ $copyright$ $projectUrl$ + README.md @@ -21,6 +22,7 @@ + diff --git a/src/wix/WixToolset.Sdk/README.md b/src/wix/WixToolset.Sdk/README.md new file mode 100644 index 000000000..6b139d9cb --- /dev/null +++ b/src/wix/WixToolset.Sdk/README.md @@ -0,0 +1,12 @@ +# WixToolset.Sdk + +The `WixToolset.Sdk` package provides the WiX Toolset as an MSBuild SDK for both .NET (v6 or later) and .NET Framework (v4.7.2 or later). SDK-style projects have smart defaults that make for simple .wixproj project authoring. For example, here's a minimal .wixproj that builds an MSI from the .wxs source files in the project directory: + +```xml + + +``` + +For more information about WiX as an MSBuild SDK, see https://wixtoolset.org/docs/intro/#msbuild. + +For more information about WiX targets, properties, and items, see https://wixtoolset.org/docs/tools/msbuild/. diff --git a/src/wix/WixToolset.Sdk/WixToolset.Sdk.csproj b/src/wix/WixToolset.Sdk/WixToolset.Sdk.csproj index 46ff4d808..2f9b33fda 100644 --- a/src/wix/WixToolset.Sdk/WixToolset.Sdk.csproj +++ b/src/wix/WixToolset.Sdk/WixToolset.Sdk.csproj @@ -5,11 +5,16 @@ net6.0 WiX Toolset MSBuild integration + README.md $(PublishRoot)WixToolset.Sdk\ $(MSBuildThisFileName).nuspec $(PublishDir) + + + + diff --git a/src/wix/pack-wix/README.md b/src/wix/pack-wix/README.md new file mode 100644 index 000000000..95ac7c820 --- /dev/null +++ b/src/wix/pack-wix/README.md @@ -0,0 +1,7 @@ +# wix + +The `wix` package provides the WiX Toolset as a .NET Tool, perfect for your command-line packaging pleasure. Version 6 or later of the .NET SDK is required. + +To install WiX as a .NET tool or upgrade to a later version, see https://wixtoolset.org/docs/intro/#nettool. + +To read about available commands and switches, see https://wixtoolset.org/docs/tools/wixexe/. diff --git a/src/wix/pack-wix/pack-wix.csproj b/src/wix/pack-wix/pack-wix.csproj index 092145f60..0a8dc89ca 100644 --- a/src/wix/pack-wix/pack-wix.csproj +++ b/src/wix/pack-wix/pack-wix.csproj @@ -7,7 +7,12 @@ false The WiX Toolset command-line interface. The WiX Toolset lets developers create installers for Windows. This package contains the WiX Toolset command-line interface. + README.md wix $(OutputPath)publish\wix\ + + + +