aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.CoreIntegration/TestData/AppSearch/FileSearch.wxs
blob: c17d984827e08e70e3ca533ae75e218ee3585dd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
    <Fragment>
        <ComponentGroup Id="ProductComponents">
            <ComponentGroupRef Id="MinimalComponentGroup"></ComponentGroupRef>
        </ComponentGroup>

        <Property Id="SAMPLEFILEFOUND">
            <IniFileSearch Id="SampleIniFileSearch" Name="sample.fil" Section="MySection" Key="MyKey">
                <FileSearch Id="SampleFileSearch" Name="sample.fil"></FileSearch>
            </IniFileSearch>
        </Property>
    </Fragment>
</Wix>