diff options
| author | Rob Mensching <rob@firegiant.com> | 2021-04-22 17:19:56 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2021-04-29 19:53:52 -0700 |
| commit | 8cf0427984a88b0b3ddfb2061e5be721afffe82e (patch) | |
| tree | 22e2aaf7665d5ab6d3dc2a8ce8f05d73080d1f20 /src/test/Example.Extension/ExampleRow.cs | |
| parent | 8426095723fb8530a321260473ab543151bf8c98 (diff) | |
| download | wix-8cf0427984a88b0b3ddfb2061e5be721afffe82e.tar.gz wix-8cf0427984a88b0b3ddfb2061e5be721afffe82e.tar.bz2 wix-8cf0427984a88b0b3ddfb2061e5be721afffe82e.zip | |
Move Core into wix
Diffstat (limited to 'src/test/Example.Extension/ExampleRow.cs')
| -rw-r--r-- | src/test/Example.Extension/ExampleRow.cs | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/src/test/Example.Extension/ExampleRow.cs b/src/test/Example.Extension/ExampleRow.cs deleted file mode 100644 index fc20c6c9..00000000 --- a/src/test/Example.Extension/ExampleRow.cs +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 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 Example.Extension | ||
| 4 | { | ||
| 5 | using WixToolset.Data; | ||
| 6 | using WixToolset.Data.WindowsInstaller; | ||
| 7 | |||
| 8 | public class ExampleRow : Row | ||
| 9 | { | ||
| 10 | public ExampleRow(SourceLineNumber sourceLineNumbers, Table table) | ||
| 11 | : base(sourceLineNumbers, table) | ||
| 12 | { | ||
| 13 | } | ||
| 14 | |||
| 15 | public ExampleRow(SourceLineNumber sourceLineNumbers, TableDefinition tableDefinition) | ||
| 16 | : base(sourceLineNumbers, tableDefinition) | ||
| 17 | { | ||
| 18 | } | ||
| 19 | |||
| 20 | public string Example | ||
| 21 | { | ||
| 22 | get { return (string)this.Fields[0].Data; } | ||
| 23 | set { this.Fields[0].Data = value; } | ||
| 24 | } | ||
| 25 | |||
| 26 | public string Value | ||
| 27 | { | ||
| 28 | get { return (string)this.Fields[1].Data; } | ||
| 29 | set { this.Fields[1].Data = value; } | ||
| 30 | } | ||
| 31 | } | ||
| 32 | } | ||
