diff options
Diffstat (limited to 'src/WixToolset.Extensibility/Data/IResolveResult.cs')
-rw-r--r-- | src/WixToolset.Extensibility/Data/IResolveResult.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/WixToolset.Extensibility/Data/IResolveResult.cs b/src/WixToolset.Extensibility/Data/IResolveResult.cs new file mode 100644 index 00000000..87b9c573 --- /dev/null +++ b/src/WixToolset.Extensibility/Data/IResolveResult.cs | |||
@@ -0,0 +1,18 @@ | |||
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.Extensibility.Data | ||
4 | { | ||
5 | using System.Collections.Generic; | ||
6 | using WixToolset.Data; | ||
7 | |||
8 | public interface IResolveResult | ||
9 | { | ||
10 | int Codepage { get; set; } | ||
11 | |||
12 | IEnumerable<IDelayedField> DelayedFields { get; set; } | ||
13 | |||
14 | IEnumerable<IExpectedExtractFile> ExpectedEmbeddedFiles { get; set; } | ||
15 | |||
16 | Intermediate IntermediateRepresentation { get; set; } | ||
17 | } | ||
18 | } | ||