main
wxs 26 lines 1.17 KB
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Package Name="Test Package" Manufacturer="~Test" Version="0" Compressed="false" UpgradeCode="11111111-1111-1111-1111-111111111111">
3 <Feature Id="Main">
4 <ComponentGroupRef Id="Stuff"/>
5 </Feature>
6 </Package>
7
8 <Fragment>
9 <ComponentGroup Id="Stuff" Directory="ProgramFilesFolder">
10 <Component Subdirectory="net472_x64">
11 <File Id="net472_x64" Source="!(bindpath.TestExe.net472.win_x64)\e_sqlite3.dll" />
12 </Component>
13 <Component Subdirectory="net6_x86">
14 <File Id="net6_x86" Source="!(bindpath.TestExe.net6.0.win_x86)\e_sqlite3.dll" />
15 </Component>
16 <Component Subdirectory="net6_x64">
17 <File Id="net6_x64" Source="!(bindpath.TestExe.net6.0.win_x64)\e_sqlite3.dll" />
18 </Component>
19
20 <!-- This is explicitly not built and causes the build to fail -->
21 <Component Subdirectory="net472_x86">
22 <File Id="net472_x86" Source="!(bindpath.TestExe.net472.win_x86)\e_sqlite3.dll" />
23 </Component>
24 </ComponentGroup>
25 </Fragment>
26 </Wix>