diff options
| author | Rob Mensching <rob@firegiant.com> | 2019-10-23 12:48:22 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2019-10-23 12:50:08 -0700 |
| commit | 534d79c4434c4a165f4d82ddf033fa43768c3357 (patch) | |
| tree | fc90f5bfbabccea568aebda65e64f1e524d7c3c2 /src/WixToolset.Data/Tuples/WixCustomRowTuple.cs | |
| parent | 83722a63311ba516889ff0af8510a7740e01a4c2 (diff) | |
| download | wix-534d79c4434c4a165f4d82ddf033fa43768c3357.tar.gz wix-534d79c4434c4a165f4d82ddf033fa43768c3357.tar.bz2 wix-534d79c4434c4a165f4d82ddf033fa43768c3357.zip | |
Remove BootstrapperApplicationData generally in favor of Unreal
Diffstat (limited to 'src/WixToolset.Data/Tuples/WixCustomRowTuple.cs')
| -rw-r--r-- | src/WixToolset.Data/Tuples/WixCustomRowTuple.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/WixToolset.Data/Tuples/WixCustomRowTuple.cs b/src/WixToolset.Data/Tuples/WixCustomRowTuple.cs index ec73c1b8..c51089e8 100644 --- a/src/WixToolset.Data/Tuples/WixCustomRowTuple.cs +++ b/src/WixToolset.Data/Tuples/WixCustomRowTuple.cs | |||
| @@ -27,6 +27,8 @@ namespace WixToolset.Data.Tuples | |||
| 27 | 27 | ||
| 28 | public class WixCustomRowTuple : IntermediateTuple | 28 | public class WixCustomRowTuple : IntermediateTuple |
| 29 | { | 29 | { |
| 30 | public const char FieldSeparator = '\x85'; | ||
| 31 | |||
| 30 | public WixCustomRowTuple() : base(TupleDefinitions.WixCustomRow, null, null) | 32 | public WixCustomRowTuple() : base(TupleDefinitions.WixCustomRow, null, null) |
| 31 | { | 33 | { |
| 32 | } | 34 | } |
| @@ -48,5 +50,7 @@ namespace WixToolset.Data.Tuples | |||
| 48 | get => (string)this.Fields[(int)WixCustomRowTupleFields.FieldData]; | 50 | get => (string)this.Fields[(int)WixCustomRowTupleFields.FieldData]; |
| 49 | set => this.Set((int)WixCustomRowTupleFields.FieldData, value); | 51 | set => this.Set((int)WixCustomRowTupleFields.FieldData, value); |
| 50 | } | 52 | } |
| 53 | |||
| 54 | public string[] FieldDataSeparated => this.FieldData.Split(FieldSeparator); | ||
| 51 | } | 55 | } |
| 52 | } \ No newline at end of file | 56 | } |
