diff options
author | Rob Mensching <rob@firegiant.com> | 2017-12-27 14:23:39 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2017-12-27 14:23:39 -0800 |
commit | 68075faa4a60e8016ea7653cfc1396cd00e3f646 (patch) | |
tree | 4656616a3f1030620594ee38a280e4dab8ab9e8e /src/test/TestData/Example.Extension | |
parent | 9813f0b4054ab0c003529699d1a467db90395980 (diff) | |
download | wix-68075faa4a60e8016ea7653cfc1396cd00e3f646.tar.gz wix-68075faa4a60e8016ea7653cfc1396cd00e3f646.tar.bz2 wix-68075faa4a60e8016ea7653cfc1396cd00e3f646.zip |
Integrate latest Data and Extensibility changes and build light.exe
Diffstat (limited to 'src/test/TestData/Example.Extension')
-rw-r--r-- | src/test/TestData/Example.Extension/ExampleCompilerExtension.cs | 5 | ||||
-rw-r--r-- | src/test/TestData/Example.Extension/ExampleTableDefinitions.cs | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/src/test/TestData/Example.Extension/ExampleCompilerExtension.cs b/src/test/TestData/Example.Extension/ExampleCompilerExtension.cs index 5b20e48f..cd9e1fb9 100644 --- a/src/test/TestData/Example.Extension/ExampleCompilerExtension.cs +++ b/src/test/TestData/Example.Extension/ExampleCompilerExtension.cs | |||
@@ -10,10 +10,7 @@ namespace Example.Extension | |||
10 | 10 | ||
11 | internal class ExampleCompilerExtension : BaseCompilerExtension | 11 | internal class ExampleCompilerExtension : BaseCompilerExtension |
12 | { | 12 | { |
13 | public ExampleCompilerExtension() | 13 | public override XNamespace Namespace => "http://www.example.com/scheams/v1/wxs"; |
14 | { | ||
15 | this.Namespace = "http://www.example.com/scheams/v1/wxs"; | ||
16 | } | ||
17 | 14 | ||
18 | public override void ParseElement(Intermediate intermediate, IntermediateSection section, XElement parentElement, XElement element, IDictionary<string, string> context) | 15 | public override void ParseElement(Intermediate intermediate, IntermediateSection section, XElement parentElement, XElement element, IDictionary<string, string> context) |
19 | { | 16 | { |
diff --git a/src/test/TestData/Example.Extension/ExampleTableDefinitions.cs b/src/test/TestData/Example.Extension/ExampleTableDefinitions.cs index 870b02e1..16da1316 100644 --- a/src/test/TestData/Example.Extension/ExampleTableDefinitions.cs +++ b/src/test/TestData/Example.Extension/ExampleTableDefinitions.cs | |||
@@ -9,7 +9,7 @@ namespace Example.Extension | |||
9 | { | 9 | { |
10 | public static readonly TableDefinition ExampleTable = new TableDefinition( | 10 | public static readonly TableDefinition ExampleTable = new TableDefinition( |
11 | "Example", | 11 | "Example", |
12 | new List<ColumnDefinition> | 12 | new[] |
13 | { | 13 | { |
14 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), | 14 | new ColumnDefinition("Example", ColumnType.String, 72, true, false, ColumnCategory.Identifier), |
15 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), | 15 | new ColumnDefinition("Value", ColumnType.String, 0, false, false, ColumnCategory.Formatted), |