0

When I run the Output of my Visual Studio 2008 Setup project (*.wixproj), the install wizard displays a license.

Where do I change the text displayed? I have searched all *.wxs files, but cannot find the license displayed.

Also, a hint on where to find information on this stuff would be really cool...

Daren Thomas
  • 67,947
  • 40
  • 154
  • 200

1 Answers1

2

add license.rtf file to wix project and add

<WixVariable Id="WixUILicenseRtf" Value="license.rtf">

in your Product tag

Daren Thomas
  • 67,947
  • 40
  • 154
  • 200
Bartek Szafko
  • 406
  • 3
  • 7