blob: 0c5e0ccf20a5b2cff72ffa78049c1b083261d8c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
// 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.
namespace WixToolset.Extensibility.Data
{
using System.Collections.Generic;
using WixToolset.Data;
/// <summary>
/// Result of resolving localization and bind variables.
/// </summary>
public interface IResolveResult
{
/// <summary>
/// Resolved codepage, if provided.
/// </summary>
int? Codepage { get; set; }
/// <summary>
/// Resolved summary information codepage, if provided.
/// </summary>
int? SummaryInformationCodepage { get; set; }
/// <summary>
/// Resolved package language, if provided.
/// </summary>
int? PackageLcid { get; set; }
/// <summary>
/// Fields still requiring resolution.
/// </summary>
IReadOnlyCollection<IDelayedField> DelayedFields { get; set; }
/// <summary>
/// Files to extract from embedded .wixlibs.
/// </summary>
IReadOnlyCollection<IExpectedExtractFile> ExpectedEmbeddedFiles { get; set; }
/// <summary>
/// Resolved intermediate.
/// </summary>
Intermediate IntermediateRepresentation { get; set; }
}
}
|