Skip to content

Commit 5ccfef6

Browse files
committed
'Auto-commit changes made by Claude
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>'
1 parent b5fe8ae commit 5ccfef6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

csharp/Platform.Data.Doublets.Xml.Exporter/Platform.Data.Doublets.Xml.Exporter.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

csharp/Platform.Data.Doublets.Xml.Importer/Platform.Data.Doublets.Xml.Importer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<ImplicitUsings>enable</ImplicitUsings>
77
<Nullable>enable</Nullable>
88
</PropertyGroup>

csharp/Platform.Data.Doublets.Xml/XmlExporter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ private void ExportElement(XmlWriter xmlWriter, TLinkAddress documentLinkAddress
8080
private void ExportAttribute(XmlWriter xmlWriter, TLinkAddress attributeLinkAddress)
8181
{
8282
var attribute = _storage.GetAttribute(attributeLinkAddress);
83-
xmlWriter.WriteAttributeString(attribute.Prefix, attribute.LocalName, null, attribute.Value);
83+
xmlWriter.WriteAttributeString(attribute.Prefix, attribute.LocalName, attribute.Namespaceuri, attribute.Value);
8484
}
8585

8686
private void ExportTextNode(XmlWriter xmlWriter, TLinkAddress textNodeLinkAddress)

0 commit comments

Comments
 (0)