| 1 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 2 | <Package Name='WixprojPackageVcxprojWindowsApp' Manufacturer='WiX Toolset' Version='0.0.1' UpgradeCode='41a2c17e-1976-465b-bcde-eae03516ca68'> |
| 3 | |
| 4 | <StandardDirectory Id='ProgramFilesFolder'> |
| 5 | <Directory Id='Application32Folder' Name='Test App (32-bit)' /> |
| 6 | </StandardDirectory> |
| 7 | |
| 8 | <StandardDirectory Id='ProgramFiles64Folder'> |
| 9 | <Directory Id='Application64Folder' Name='Test App (64-bit)' /> |
| 10 | </StandardDirectory> |
| 11 | |
| 12 | <Feature Id='Main'> |
| 13 | <Component Directory='Application32Folder'> |
| 14 | <File Source='..\VcxprojWindowsApp\Debug\VcxprojWindowsApp.exe' /> |
| 15 | </Component> |
| 16 | <Component Directory='Application64Folder'> |
| 17 | <File Source='..\VcxprojWindowsApp\x64\Debug\VcxprojWindowsApp.exe' /> |
| 18 | </Component> |
| 19 | |
| 20 | <!-- <ComponentGroupRef Id='VcxprojDllComponentGroup' /> --> |
| 21 | </Feature> |
| 22 | </Package> |
| 23 | </Wix> |