diff options
Diffstat (limited to 'src/WixToolset.Core/ResolveResult.cs')
-rw-r--r-- | src/WixToolset.Core/ResolveResult.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/WixToolset.Core/ResolveResult.cs b/src/WixToolset.Core/ResolveResult.cs new file mode 100644 index 00000000..6b6bc7c4 --- /dev/null +++ b/src/WixToolset.Core/ResolveResult.cs | |||
@@ -0,0 +1,19 @@ | |||
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 IEnumerable<IDelayedField> DelayedFields { get; set; } | ||
14 | |||
15 | public IEnumerable<IExpectedExtractFile> ExpectedEmbeddedFiles { get; set; } | ||
16 | |||
17 | public Intermediate IntermediateRepresentation { get; set; } | ||
18 | } | ||
19 | } | ||