From 81e1301224ccffc5811abfa38449d271767e0140 Mon Sep 17 00:00:00 2001 From: ss Date: Tue, 5 Sep 2023 15:09:01 +0200 Subject: [PATCH] Fix markdown syntax in wixui_dialog_library.md Markdown was mixed with HTML and the page was not rendering correctly. --- .../version-v3/wixui/wixui_dialog_library.md | 35 ++++++++----------- 1 file changed, 14 insertions(+), 21 deletions(-) diff --git a/src/Docusaurus/versioned_docs/version-v3/wixui/wixui_dialog_library.md b/src/Docusaurus/versioned_docs/version-v3/wixui/wixui_dialog_library.md index e68febaf..d996bc9a 100644 --- a/src/Docusaurus/versioned_docs/version-v3/wixui/wixui_dialog_library.md +++ b/src/Docusaurus/versioned_docs/version-v3/wixui/wixui_dialog_library.md @@ -19,30 +19,23 @@ The built-in WixUI dialog sets are also customizable, from the bitmaps shown in Assuming you have an existing installer that is functional but is just lacking a user interface, here are the steps you need to follow to include a built-in WixUI dialog set: -
    -
  1. Add a UIRef element to your setup authoring that has an Id that matches the name of one of the dialog sets described above. For example: - ``` -<Product ...> -<UIRef Id="WixUI_InstallDir" /> -</Product> -``` -
  2. +1. Add a UIRef element to your setup authoring that has an Id that matches the name of one of the dialog sets described above. For example: -
  3. Pass the -ext and -cultures switches to [light.exe](../overview/light.md) to reference the WixUIExtension. For example: - ``` -light -ext WixUIExtension -cultures:en-us Product.wixobj -out Product.msi +``` + + + ``` -

    Note - If you are using WiX in Visual Studio you can add the WixUIExtension using the Add Reference dialog and the necessary command lines will automatically be added when linking your .msi. To do this, use the following steps:

    - -
      -
    1. Open your WiX project in Visual Studio
    2. +2. Pass the -ext and -cultures switches to [light.exe](../overview/light.md) to reference the WixUIExtension. For example: -
    3. Right click on your project in Solution Explorer and select Add Reference...
    4. +``` +light -ext WixUIExtension -cultures:en-us Product.wixobj -out Product.msi +``` -
    5. Select the WixUIExtension.dll assembly from the list and click Add
    6. +Note - If you are using WiX in Visual Studio you can add the WixUIExtension using the Add Reference dialog and the necessary command lines will automatically be added when linking your .msi. To do this, use the following steps: -
    7. Close the Add Reference dialog
    8. -
    -
  4. -
+1. Open your WiX project in Visual Studio +2. Right click on your project in Solution Explorer and select Add Reference... +3. Select the **WixUIExtension.dll** assembly from the list and click Add +4. Close the Add Reference dialog