main
cs 15 lines 484 Bytes
Raw
1 // Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.
2
3 namespace WixToolset.Core.Burn
4 {
5 using System.Xml;
6
7 internal interface ISearchFacade
8 {
9 /// <summary>
10 /// Writes the search to the Burn manifest.
11 /// </summary>
12 /// <param name="writer"></param>
13 void WriteXml(XmlTextWriter writer);
14 }
15 }