blob: 5166be16b0b0a9bcdc6697f00752f458c02ef801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<Component>
<File Name="Foo.exe" Source="test.txt" />
<ProgId Id="Foo.File.hol.15" Advertise="yes" Description="Foo Holiday File">
<ProgId Id="Foo.File.hol" />
<Extension Id="hol">
<Verb Id="Open" Argument="/hol "%1"" Sequence="1" />
</Extension>
</ProgId>
</Component>
</ComponentGroup>
</Fragment>
</Wix>
|