Click here to Skip to main content
15,884,099 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
<wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<product id="{989677B4-119A-4193-B6AC-F98863225B4A}" name="AuthorBook" language="1033" version="1.0.0.0" manufacturer="Pankaj" upgradecode="{F2395E1F-03E8-48B1-8755-244A211E5F34}">
<package installerversion="200" compressed="yes" installscope="perMachine">

<majorupgrade downgradeerrormessage="A newer version of [ProductName] is already installed.">
<mediatemplate embedcab="yes">

<feature id="ProductFeature" title="SetupAuthorBook" level="1">
<componentgroupref id="ProductComponents">


<ui>
<uiref id="WixUI_Minimal">


<property id="WIXUI_EXITDIALOGOPTIONALCHECKBOXTEXT" value="Launch Author Book">


<fragment>
<directory id="TARGETDIR" name="SourceDir">
<directory id="ProgramFilesFolder">
<directory id="MANUFACTURERFOLDER" name="!(bind.property.Manufacturer)">
<directory id="INSTALLFOLDER" name="!(bind.property.ProductName)">





<fragment>
<componentgroup id="ProductComponents" directory="INSTALLFOLDER">
<component id="$(var.OpsViewProject.TargetFileName)" guid="{5EE6A23B-D1FA-4B43-AFCF-5CF56137483C}">
<file id="$(var.OpsViewProject.TargetFileName)" keypath="yes" source="$(var.OpsViewProject.TargetPath)" checksum="yes">











What I have tried:

Can anybody tell how can I sort this out?
Posted
Updated 17-Jun-21 6:16am
Comments
SeeSharp2 17-Jun-21 11:32am    
If would contact Wix if I were you.

1 solution

First, does your app work if you have only your apps executable in a Program Files folder? That's all your installer, as written, will lay down.

If your app needs more files, like .DLL's and such, this installer doesn't know about them and will not lay them down with your executable.

Nobody can answer this for you. This is something YOU are going to have to troubleshoot.

For now, forget the installer and just figure out what files your app needs to run.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900