aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/ErrorsInUI/PackageComponents.wxs
blob: c9c65fc7e10a85169f9500191dfe5d0152dc0b7f (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>
        <UI>
            <Error Id="1234">
                Category 55 Emergency Doomsday Crisis
            </Error>
            <Error Id="5678"><![CDATA[ ]]></Error>
        </UI>
        <ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
            <Component>
                <File Source="test.txt" />
            </Component>
        </ComponentGroup>
    </Fragment>
</Wix>