main
cs 25 lines 747 Bytes
Raw
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 /// <summary>
6 /// Options for building the cabinet.
7 /// </summary>
8 public enum CabinetBuildOption
9 {
10 /// <summary>
11 /// Build the cabinet and move it to the target location.
12 /// </summary>
13 BuildAndMove,
14
15 /// <summary>
16 /// Build the cabinet and copy it to the target location.
17 /// </summary>
18 BuildAndCopy,
19
20 /// <summary>
21 /// Just copy the cabinet to the target location.
22 /// </summary>
23 Copy
24 }
25 }