diff options
Diffstat (limited to 'src/WixToolset.Core.Burn/ISearchFacade.cs')
-rw-r--r-- | src/WixToolset.Core.Burn/ISearchFacade.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/WixToolset.Core.Burn/ISearchFacade.cs b/src/WixToolset.Core.Burn/ISearchFacade.cs new file mode 100644 index 00000000..b9ad8649 --- /dev/null +++ b/src/WixToolset.Core.Burn/ISearchFacade.cs | |||
@@ -0,0 +1,15 @@ | |||
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 | } | ||