diff options
author | Rob Mensching <rob@firegiant.com> | 2023-04-16 10:25:23 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2023-04-16 12:04:17 -0700 |
commit | dbbce9a1a489419271dad960757f764e4ad5508d (patch) | |
tree | 4bfaf0a91083fcdcda5d79a527a4ae97014670e4 /README.md | |
parent | 8c757c0f67f26f21c6bcbbfb81b7ea8b91c35fe4 (diff) | |
download | wix-dbbce9a1a489419271dad960757f764e4ad5508d.tar.gz wix-dbbce9a1a489419271dad960757f764e4ad5508d.tar.bz2 wix-dbbce9a1a489419271dad960757f764e4ad5508d.zip |
Start WiX Toolset v5
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 15 |
1 files changed, 7 insertions, 8 deletions
@@ -2,11 +2,11 @@ | |||
2 | 2 | ||
3 | [](https://www.nuget.org/packages/wix) | 3 | [](https://www.nuget.org/packages/wix) |
4 | [](https://www.nuget.org/stats/packages/WiX?groupby=Version) | 4 | [](https://www.nuget.org/stats/packages/WiX?groupby=Version) |
5 | [](https://github.com/wixtoolset/wix4/actions/workflows/build.yml?query=branch%3Adevelop) | 5 | [](https://github.com/wixtoolset/wix/actions/workflows/build.yml?query=branch%3Adevelop) |
6 | 6 | ||
7 | # WiX Toolset v4 | 7 | # WiX Toolset |
8 | 8 | ||
9 | This repository contains the WiX Toolset v4 codebase. | 9 | This repository contains the WiX Toolset codebase. |
10 | 10 | ||
11 | # Developing WiX | 11 | # Developing WiX |
12 | 12 | ||
@@ -33,9 +33,9 @@ This repository contains the WiX Toolset v4 codebase. | |||
33 | 33 | ||
34 | ##### Getting started: | 34 | ##### Getting started: |
35 | 35 | ||
36 | * Fork the WiX4 repository (https://github.com/wixtoolset/wix4.git) | 36 | * Fork the WiX repository (https://github.com/wixtoolset/wix.git) |
37 | into a GitHub domain that you control | 37 | into a GitHub domain that you control |
38 | * Clone the WiX4 repository from your fork (git clone https://github.com/yourdomain/wix4.git) | 38 | * Clone the WiX repository from your fork (git clone https://github.com/yourdomain/wix.git) |
39 | into the directory of your choice | 39 | into the directory of your choice |
40 | 40 | ||
41 | ##### To build the WiX toolset: | 41 | ##### To build the WiX toolset: |
@@ -50,12 +50,11 @@ This repository contains the WiX Toolset v4 codebase. | |||
50 | 50 | ||
51 | ##### Pull request expectations | 51 | ##### Pull request expectations |
52 | 52 | ||
53 | * 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 WiX issue (or create one). Add a comment requesting that you be assigned to the issue. Wait for confirmation. |
54 | * 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 |
55 | * 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 | * Push the changes to your repository origin as needed | 56 | * Push the changes to your repository origin as needed |
57 | * If there are multiple commits squash them down to one commit. | 57 | * If there are multiple commits squash them down to one commit. |
58 | * 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. |
59 | * 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 |
60 | * Create a PR with your branch against the WiX4 repository. | 60 | * Create a PR with your branch against the WiX repository. |
61 | |||