| 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 WixToolset.Data; |
| 7 | using WixToolset.Extensibility.Data; |
| 8 | |
| 9 | internal class ResolveResult : IResolveResult |
| 10 | { |
| 11 | public int? Codepage { get; set; } |
| 12 | |
| 13 | public int? SummaryInformationCodepage { get; set; } |
| 14 | |
| 15 | public int? PackageLcid { get; set; } |
| 16 | |
| 17 | public IReadOnlyCollection<IDelayedField> DelayedFields { get; set; } |
| 18 | |
| 19 | public IReadOnlyCollection<IExpectedExtractFile> ExpectedEmbeddedFiles { get; set; } |
| 20 | |
| 21 | public Intermediate IntermediateRepresentation { get; set; } |
| 22 | } |
| 23 | } |