diff options
Diffstat (limited to 'src/WixToolset.Core/ResolvedCabinet.cs')
-rw-r--r-- | src/WixToolset.Core/ResolvedCabinet.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/WixToolset.Core/ResolvedCabinet.cs b/src/WixToolset.Core/ResolvedCabinet.cs new file mode 100644 index 00000000..9304b413 --- /dev/null +++ b/src/WixToolset.Core/ResolvedCabinet.cs | |||
@@ -0,0 +1,22 @@ | |||
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 WixToolset.Extensibility.Data; | ||
6 | |||
7 | /// <summary> | ||
8 | /// Data returned from build file manager ResolveCabinet callback. | ||
9 | /// </summary> | ||
10 | public class ResolvedCabinet : IResolvedCabinet | ||
11 | { | ||
12 | /// <summary> | ||
13 | /// Gets or sets the build option for the resolved cabinet. | ||
14 | /// </summary> | ||
15 | public CabinetBuildOption BuildOption { get; set; } | ||
16 | |||
17 | /// <summary> | ||
18 | /// Gets or sets the path for the resolved cabinet. | ||
19 | /// </summary> | ||
20 | public string Path { get; set; } | ||
21 | } | ||
22 | } | ||