Skip to content

Commit 8e65717

Browse files
committed
Fixed target namespace
1 parent 37a3ce9 commit 8e65717

File tree

73 files changed

+208
-205
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+208
-205
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -243,3 +243,5 @@ ModelManifest.xml
243243
# FAKE - F# Make
244244
.fake/
245245
.idea/
246+
247+
pkg/

BeanIO.sln.DotSettings

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ Licensed under the MIT license. See LICENSE file in the project root for full li
2424
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ECSharpUseContinuousIndentInsideBracesMigration/@EntryIndexedValue">True</s:Boolean>
2525
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAddAccessorOwnerDeclarationBracesMigration/@EntryIndexedValue">True</s:Boolean>
2626
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean>
27-
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateThisQualifierSettings/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
27+
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateThisQualifierSettings/@EntryIndexedValue">True</s:Boolean>
28+
<s:Boolean x:Key="/Default/UserDictionary/Words/=unmarshaller/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

src/FubarDev.BeanIO/Xsd/2016/07/mapping.xsd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<schema
33
xmlns="http://www.w3.org/2001/XMLSchema"
4-
xmlns:tns="http://www.beanio.org/2015/06"
4+
xmlns:tns="http://www.beanio.org/2016/07"
55
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
66
elementFormDefault="qualified"
77
targetNamespace="http://www.beanio.org/2016/07"

test/FubarDev.BeanIO.Test/Beans/Bean.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace BeanIO.Beans
1818
[SuppressMessage("ReSharper", "InconsistentNaming", Justification = "directly ported from the Java source code")]
1919
public class Bean
2020
{
21-
#region simple properties
21+
#region simple fields
2222
public string? type;
2323
public string? text;
2424
public string? field1;
@@ -27,12 +27,12 @@ public class Bean
2727
public LocalDate? date;
2828
#endregion
2929

30-
#region collection properties
30+
#region collection fields
3131
public Hashtable? map;
3232
public ArrayList? list;
3333
#endregion
3434

35-
#region bean properties
35+
#region bean fields
3636
public Bean? group;
3737
public Bean? record;
3838
public Bean? segment;
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version='1.0' encoding='UTF-8' ?>
2-
<beanio xmlns="http://www.beanio.org/2012/03"
2+
<beanio xmlns="http://www.beanio.org/2016/07"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://www.beanio.org/2012/03 http://www.beanio.org/2012/03/mapping.xsd">
4+
xsi:schemaLocation="http://www.beanio.org/2016/07 http://www.beanio.org/2016/07/mapping.xsd">
55

66
<import resource="resource:BeanIO.Config.ab_template.xml, FubarDev.BeanIO.Test" />
77

88
<stream name="a" format="csv">
99
<record name="record" class="map" template="template" />
1010
</stream>
1111

12-
</beanio>
12+
</beanio>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version='1.0' encoding='UTF-8' ?>
2-
<beanio xmlns="http://www.beanio.org/2012/03"
2+
<beanio xmlns="http://www.beanio.org/2016/07"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://www.beanio.org/2012/03 http://www.beanio.org/2012/03/mapping.xsd">
4+
xsi:schemaLocation="http://www.beanio.org/2016/07 http://www.beanio.org/2016/07/mapping.xsd">
55

66
<import resource="resource:BeanIO.Config.a.xml, FubarDev.BeanIO.Test" />
77
<import resource="resource:BeanIO.Config.b.xml, FubarDev.BeanIO.Test" />
88

9-
</beanio>
9+
</beanio>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version='1.0' encoding='UTF-8' ?>
2-
<beanio xmlns="http://www.beanio.org/2012/03"
2+
<beanio xmlns="http://www.beanio.org/2016/07"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://www.beanio.org/2012/03 http://www.beanio.org/2012/03/mapping.xsd">
4+
xsi:schemaLocation="http://www.beanio.org/2016/07 http://www.beanio.org/2016/07/mapping.xsd">
55

66
<template name="template">
77
<field name="field" />
88
</template>
99

10-
</beanio>
10+
</beanio>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version='1.0' encoding='UTF-8' ?>
2-
<beanio xmlns="http://www.beanio.org/2012/03"
2+
<beanio xmlns="http://www.beanio.org/2016/07"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://www.beanio.org/2012/03 http://www.beanio.org/2012/03/mapping.xsd">
4+
xsi:schemaLocation="http://www.beanio.org/2016/07 http://www.beanio.org/2016/07/mapping.xsd">
55

66
<import resource="resource:BeanIO.Config.ab_template.xml, FubarDev.BeanIO.Test" />
77

88
<stream name="b" format="csv">
99
<record name="record" class="map" template="template" />
1010
</stream>
1111

12-
</beanio>
12+
</beanio>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version='1.0' encoding='UTF-8' ?>
2-
<beanio xmlns="http://www.beanio.org/2012/03"
2+
<beanio xmlns="http://www.beanio.org/2016/07"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://www.beanio.org/2012/03 http://www.beanio.org/2012/03/mapping.xsd">
4+
xsi:schemaLocation="http://www.beanio.org/2016/07 http://www.beanio.org/2016/07/mapping.xsd">
55

66
<stream name="stream" format="xml">
77
<record name="person" class="map">
88
<field name="field" xmlType="attribute" collection="list" minOccurs="0" maxOccurs="5" />
99
</record>
1010
</stream>
1111

12-
</beanio>
12+
</beanio>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?xml version='1.0' encoding='UTF-8' ?>
2-
<beanio xmlns="http://www.beanio.org/2012/03"
2+
<beanio xmlns="http://www.beanio.org/2016/07"
33
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:schemaLocation="http://www.beanio.org/2012/03 http://www.beanio.org/2012/03/mapping.xsd">
4+
xsi:schemaLocation="http://www.beanio.org/2016/07 http://www.beanio.org/2016/07/mapping.xsd">
55

66
<stream name="stream" format="xml">
77
<record name="person" class="map">
88
<field name="field" xmlNamespace="http://field" xmlType="text"/>
99
</record>
1010
</stream>
1111

12-
</beanio>
12+
</beanio>

0 commit comments

Comments
 (0)