diff options
author | Rob Mensching <rob@firegiant.com> | 2019-10-25 00:23:42 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2019-10-25 00:25:53 -0700 |
commit | 6c1ae2593faab59e1a01c96794e0835a6fcd0626 (patch) | |
tree | c15fcb9a1f1c5bec846ba61f1f3dcd9a152bf701 /src/WixToolset.Data/IntermediateFieldPathValue.cs | |
parent | 0078364515ba1f7570f43d47e43bd359918cafd0 (diff) | |
download | wix-6c1ae2593faab59e1a01c96794e0835a6fcd0626.tar.gz wix-6c1ae2593faab59e1a01c96794e0835a6fcd0626.tar.bz2 wix-6c1ae2593faab59e1a01c96794e0835a6fcd0626.zip |
Implement WixOutput with support for multiple streams of data
Diffstat (limited to 'src/WixToolset.Data/IntermediateFieldPathValue.cs')
-rw-r--r-- | src/WixToolset.Data/IntermediateFieldPathValue.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/WixToolset.Data/IntermediateFieldPathValue.cs b/src/WixToolset.Data/IntermediateFieldPathValue.cs index 7d4fcdfe..a8d2735a 100644 --- a/src/WixToolset.Data/IntermediateFieldPathValue.cs +++ b/src/WixToolset.Data/IntermediateFieldPathValue.cs | |||
@@ -1,4 +1,4 @@ | |||
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. | 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 | 2 | ||
3 | namespace WixToolset.Data | 3 | namespace WixToolset.Data |
4 | { | 4 | { |
@@ -7,10 +7,9 @@ namespace WixToolset.Data | |||
7 | public class IntermediateFieldPathValue | 7 | public class IntermediateFieldPathValue |
8 | { | 8 | { |
9 | /// <summary> | 9 | /// <summary> |
10 | /// Gets or sets the index of the embedded file in a library. | 10 | /// Indicates whether to embed the path to the file when the intermediate field is saved. |
11 | /// </summary> | 11 | /// </summary> |
12 | /// <value>The index of the embedded file.</value> | 12 | public bool Embed { get; set; } |
13 | public int? EmbeddedFileIndex { get; set; } | ||
14 | 13 | ||
15 | /// <summary> | 14 | /// <summary> |
16 | /// Gets the base URI of the path field. | 15 | /// Gets the base URI of the path field. |