I am trying to use Wix Toolkit for the installer of my application (visual studio 2013). The issue being is that its only grabbing the .exe file of my application. It is missing all the DLL, .config, pdb etc..
Now I know how to add these in manually but that seems kind of stupid. What is the correct way of doing this? This is what I have;
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFilesFolder">
<Directory Id="INSTALLFOLDER" Name="MyApp"/>
</Directory>
</Fragment>
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<Component Guid="*" >
<File Source="$(var.MyApp.TargetPath)" KeyPath="yes" />
</Component>
</ComponentGroup>
</Fragment>