aboutsummaryrefslogtreecommitdiff
path: root/src/test/wix/TestData/WixprojPackageVcxprojWindowsApp/Package.wxs
blob: 00ef4d05db5e104230828d8fec7fca4e9d90d828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
  <Package Name='!(loc.PackageName)' Manufacturer='WiX Toolset' Version='0.0.1' UpgradeCode='00000000-0000-0000-0000-000000000000'>

    <StandardDirectory Id='ProgramFiles6432Folder'>
      <Directory Id='ApplicationFolder' Name='Test App'>
        <Merge Id='WinFormsModule' Language='0' SourceFile='WixprojModuleCsprojWinFormsNetFx.msm' />
      </Directory>
    </StandardDirectory>

    <Feature Id='Main' Title='!(loc.FeatureTitle)'>
      <Component Directory='ApplicationFolder'>
        <File Id='VcxprojWindowsApp' Source='VcxprojWindowsApp.exe' />
      </Component>

      <ComponentGroupRef Id='VcxprojDllComponentGroup' />

      <MergeRef Id='WinFormsModule' />
    </Feature>

    <UIRef Id="WixUI_Minimal" />
  </Package>
</Wix>