diff options
author | Bob Arnson <bob@firegiant.com> | 2023-03-30 17:11:41 -0400 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2023-03-31 07:46:30 -0700 |
commit | af72e6fdc0b2ba81bdacf2a460faf01c24b1e220 (patch) | |
tree | 82d38d544bd987437fc163691aa9dd7f39a0871d /README.md | |
parent | f5bda6af2abbcf7e4792d299b86bfcec713fc6c2 (diff) | |
download | wix-af72e6fdc0b2ba81bdacf2a460faf01c24b1e220.tar.gz wix-af72e6fdc0b2ba81bdacf2a460faf01c24b1e220.tar.bz2 wix-af72e6fdc0b2ba81bdacf2a460faf01c24b1e220.zip |
Explicitly mention need for nuget.exe.
...which, oddly, is not included in Visual Studio.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -12,7 +12,7 @@ This repository contains the WiX Toolset v4 codebase. | |||
12 | 12 | ||
13 | ## Prerequisites | 13 | ## Prerequisites |
14 | 14 | ||
15 | Visual Studio 2022 (17.0.4 or higher) with the following installed: | 15 | - Visual Studio 2022 (17.0.4 or higher) with the following installed: |
16 | 16 | ||
17 | | Workloads | | 17 | | Workloads | |
18 | | :-------- | | 18 | | :-------- | |
@@ -29,6 +29,8 @@ Visual Studio 2022 (17.0.4 or higher) with the following installed: | |||
29 | | MSVC v143 - VS 2022 C++ ARM64 build tools (Latest) | | 29 | | MSVC v143 - VS 2022 C++ ARM64 build tools (Latest) | |
30 | | MSVC v143 - VS 2022 C++ x64/x86 build tools (Latest) | | 30 | | MSVC v143 - VS 2022 C++ x64/x86 build tools (Latest) | |
31 | 31 | ||
32 | - [Download the latest nuget.exe command-line tool](https://www.nuget.org/downloads) and put it in a directory on the path. | ||
33 | |||
32 | ##### Getting started: | 34 | ##### Getting started: |
33 | 35 | ||
34 | * Fork the WiX4 repository (https://github.com/wixtoolset/wix4.git) | 36 | * Fork the WiX4 repository (https://github.com/wixtoolset/wix4.git) |
@@ -43,11 +45,11 @@ Visual Studio 2022 (17.0.4 or higher) with the following installed: | |||
43 | * Issue the command `devbuild` (or `devbuild release` if you want to create a release version) | 45 | * Issue the command `devbuild` (or `devbuild release` if you want to create a release version) |
44 | 46 | ||
45 | ##### Executing your newly built WiX toolset | 47 | ##### Executing your newly built WiX toolset |
46 | 48 | ||
47 | * `build\wix\Debug\publish\wix\wix --help` (Of course changing Debug to Release if you built in Release mode) | 49 | * `build\wix\Debug\publish\wix\wix --help` (Of course changing Debug to Release if you built in Release mode) |
48 | 50 | ||
49 | ##### Pull request expectations | 51 | ##### Pull request expectations |
50 | 52 | ||
51 | * Pick an outstanding WiX4 issue (or create one). Add a comment requesting that you be assigned to the issue. Wait for confirmation. | 53 | * Pick an outstanding WiX4 issue (or create one). Add a comment requesting that you be assigned to the issue. Wait for confirmation. |
52 | * To create a PR fork a new branch from the develop branch | 54 | * To create a PR fork a new branch from the develop branch |
53 | * Make changes to effect whatever changed behaviour is required for the PR | 55 | * Make changes to effect whatever changed behaviour is required for the PR |
@@ -56,4 +58,4 @@ Visual Studio 2022 (17.0.4 or higher) with the following installed: | |||
56 | * If the develop branch has changed since you created your new branch rebase to the current development branch. | 58 | * If the develop branch has changed since you created your new branch rebase to the current development branch. |
57 | * If needed (ie, you squashed or rebased), do a force push of your branch | 59 | * If needed (ie, you squashed or rebased), do a force push of your branch |
58 | * Create a PR with your branch against the WiX4 repository. | 60 | * Create a PR with your branch against the WiX4 repository. |
59 | 61 | ||