blob: 596e98a61c9e47fad0e516c8d1d1abf76947713a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Fragment>
<ComponentGroup Id="ProductComponents">
<Component Directory="INSTALLFOLDER">
<File Id="test.txt" Source="test.txt" />
<ServiceInstall Name="SampleService" ErrorControl="ignore" Start="disabled" Type="ownProcess"></ServiceInstall>
</Component>
</ComponentGroup>
</Fragment>
</Wix>
|