| 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 |
| 4 | { |
| 5 | using System.Collections.Generic; |
| 6 | using System.Xml.Linq; |
| 7 | using WixToolset.Extensibility.Data; |
| 8 | |
| 9 | internal class PreprocessResult : IPreprocessResult |
| 10 | { |
| 11 | public XDocument Document { get; set; } |
| 12 | |
| 13 | public IReadOnlyCollection<IIncludedFile> IncludedFiles { get; set; } |
| 14 | } |
| 15 | } |