diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-11-01 10:56:09 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-11-01 10:56:09 -0700 |
| commit | 69b15d96cebdbb7201b1849b4f62786633d70b8d (patch) | |
| tree | 4b65de8679e4b4ab81b69edcccbac1ae9f55a16d /src/WixToolset.Data/IntermediateFieldPathValue.cs | |
| parent | a8656a87887d6cb2c54f4bbeacee37f7074f1032 (diff) | |
| download | wix-69b15d96cebdbb7201b1849b4f62786633d70b8d.tar.gz wix-69b15d96cebdbb7201b1849b4f62786633d70b8d.tar.bz2 wix-69b15d96cebdbb7201b1849b4f62786633d70b8d.zip | |
Introduce WiX Intermediate Representation
Diffstat (limited to 'src/WixToolset.Data/IntermediateFieldPathValue.cs')
| -rw-r--r-- | src/WixToolset.Data/IntermediateFieldPathValue.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/WixToolset.Data/IntermediateFieldPathValue.cs b/src/WixToolset.Data/IntermediateFieldPathValue.cs new file mode 100644 index 00000000..7d4fcdfe --- /dev/null +++ b/src/WixToolset.Data/IntermediateFieldPathValue.cs | |||
| @@ -0,0 +1,27 @@ | |||
| 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.Data | ||
| 4 | { | ||
| 5 | using System; | ||
| 6 | |||
| 7 | public class IntermediateFieldPathValue | ||
| 8 | { | ||
| 9 | /// <summary> | ||
| 10 | /// Gets or sets the index of the embedded file in a library. | ||
| 11 | /// </summary> | ||
| 12 | /// <value>The index of the embedded file.</value> | ||
| 13 | public int? EmbeddedFileIndex { get; set; } | ||
| 14 | |||
| 15 | /// <summary> | ||
| 16 | /// Gets the base URI of the path field. | ||
| 17 | /// </summary> | ||
| 18 | /// <value>The base URI of the path field.</value> | ||
| 19 | public Uri BaseUri { get; set; } | ||
| 20 | |||
| 21 | /// <summary> | ||
| 22 | /// Gets or sets the data for this field. | ||
| 23 | /// </summary> | ||
| 24 | /// <value>Data in the field.</value> | ||
| 25 | public string Path { get; set; } | ||
| 26 | } | ||
| 27 | } | ||
