Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improving clarity of "Creating a Simple Setup" #524

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@ In this tutorial, we will create a C# Windows Form Application and then use WiX
1. In the <b>MySetup</b> project, right-click on the <b>References</b> node and choose <b>Add Reference...</b>.
1. Navigate to the <b>Projects</b> tab, click on the <b>MyApplication</b> project, and click the <b>Add</b>
button, and then press OK.
1. Find the comment that says:
1. Find the lines that say:

<!-- TODO: Insert your files, registry keys, and other resources here. -->
<!-- <Component Id="ProductComponent"> -->
<!-- TODO: Insert your files, registry keys, and other resources here. -->
<!-- </Component> -->

Delete that line and replace it with the following lines of code:
Uncomment the first and last of those lines and replace the middle line (TODO:) with:

<File Source="$(var.MyApplication.TargetPath)" />
1. Build the WiX project.
Expand Down