| 1 | <?ifndef WixprojLibraryVcxprojDll.ProjectDir ?> |
| 2 | <?error This error should not be hit when wixlib ProjectReferences correctly create their DefineConstants. ?> |
| 3 | <?endif?> |
| 4 | |
| 5 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" |
| 6 | xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui"> |
| 7 | <Package Name='!(loc.PackageName)' Manufacturer='WiX Toolset' Version='0.0.1' UpgradeCode='41a2c17e-1976-465b-bcde-eae03516ca68'> |
| 8 | <SoftwareTag Regid='wixtoolset.org' InstallDirectory='ApplicationFolder' /> |
| 9 | |
| 10 | <StandardDirectory Id='ProgramFiles6432Folder'> |
| 11 | <Directory Id='ApplicationFolder' Name='Test App'> |
| 12 | <Merge Id='WinFormsModule' Language='0' SourceFile='WixprojModuleCsprojWinFormsNetFx.msm' /> |
| 13 | </Directory> |
| 14 | </StandardDirectory> |
| 15 | |
| 16 | <Feature Id='Main' Title='!(loc.FeatureTitle)'> |
| 17 | <Component Directory='ApplicationFolder'> |
| 18 | <File Id='VcxprojWindowsApp' Source='VcxprojWindowsApp.exe' /> |
| 19 | </Component> |
| 20 | |
| 21 | <ComponentGroupRef Id='VcxprojDllComponentGroup' /> |
| 22 | |
| 23 | <MergeRef Id='WinFormsModule' /> |
| 24 | </Feature> |
| 25 | |
| 26 | <ui:WixUI Id="WixUI_Minimal" /> |
| 27 | </Package> |
| 28 | </Wix> |