main
wxs 22 lines 641 Bytes
Raw
1 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2 <Fragment>
3 <Property Id="PropertyFromExampleWir" Value="FromWir" />
4
5 <Binary Id="BinFromWir" SourceFile="example.txt" />
6 </Fragment>
7
8 <Fragment>
9 <Property Id="LocalizedProperty" Value="!(loc.ExampleString)" />
10 </Fragment>
11
12 <Fragment>
13 <BootstrapperApplication Id="fakeba"
14 SourceFile="example.txt">
15 <!--<BootstrapperApplicationDll SourceFile="example.txt" />-->
16 </BootstrapperApplication>
17 </Fragment>
18
19 <Fragment>
20 <BootstrapperExtension Id="ExampleBootstrapperExtension" SourceFile="example.txt" />
21 </Fragment>
22 </Wix>