The Home repository is the starting point for developers wanting to contribute to the WiX Toolset.
Перейти к файлу
WiX-BoT bcb502145f @drlsdee has signed the CLA from Pull Request #199 2023-04-20 00:19:09 -07:00
.github/signatures @drlsdee has signed the CLA from Pull Request #199 2023-04-20 00:19:09 -07:00
imgs Add WiX logos 2020-11-15 10:15:10 -08:00
repo-template Commit last repo template changes 2021-10-17 16:56:33 -07:00
.gitattributes Add .gitattributes for EOL normalization. 2018-08-30 22:14:39 -05:00
DNFCLA.md .NET Foundation CLA 2021-10-17 16:57:09 -07:00
README.md Add logo to readme 2020-11-15 11:56:51 -08:00
all.cmd Add doc project 2021-02-28 17:02:01 -08:00
buildall.cmd Add doc project 2021-02-28 17:02:01 -08:00
cleanall.cmd Add doc project 2021-02-28 17:02:01 -08:00
enlist.cmd Add doc project 2021-02-28 17:02:01 -08:00
nuget.config Remove LegacyTools references 2020-11-15 09:36:21 -08:00
updatepackage.ps1 Support package references without version 2021-10-17 16:55:41 -07:00

README.md

WiX Toolset

Home

The Home repository is the starting point for developers wanting to contribute to the WiX Toolset.

Getting Started

The WiX Toolset is composed of several projects that are distributed across several Git repositories. The output of a project is published and shared with other projects via NuGet packages. Thus, you only need to enlist in the Git repositories required for your change.

Before you begin, you must have Git and the .NET Core 2.0 SDK installed. Visual Studio 2017.3 can be used to get both.

To help developer productivity, the enlist.cmd in this repository can be used to manage a .sln file with all the projects you clone. Simply follow these steps to get going:

  1. Create a folder to hold the WiX Toolset projects. For example, C:\src\wixtoolset
  2. Clone this repository into that folder: git clone https://github.com/wixtoolset/Home.git C:\src\wixtoolset\Home
  3. Run the enlist.cmd in your clone of the Home repository for the project you are interested in. For example: C:\src\wixtoolset\Home\enlist.cmd Core

The enlist.cmd will clone the desired project, create a WixToolset.sln in the root folder (e.g. C:\src\wixtoolset), add the requested projects to the solution and configure NuGet. You can run enlist.cmd multiple times to add additional projects.