Skip to content

Commit 9aac4fb

Browse files
committed
Made append header public.
1 parent f8ad1ef commit 9aac4fb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/OsmSharp.IO.Binary/BinarySerializer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public static class BinarySerializer
3737
/// <summary>
3838
/// Appends the header byte(s).
3939
/// </summary>
40-
private static void AppendHeader(this Stream stream, OsmGeo osmGeo)
40+
public static void AppendHeader(this Stream stream, OsmGeo osmGeo)
4141
{
4242
// build header containing type and nullable flags.
4343
byte header = 1; // a node.

src/OsmSharp.IO.Binary/OsmSharp.IO.Binary.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<TargetFramework>netstandard2.0</TargetFramework>
44
<AssemblyName>OsmSharp.IO.Binary</AssemblyName>
55
<PackageId>OsmSharp.IO.Binary</PackageId>
6-
<PackageVersion>0.3.0-pre002</PackageVersion>
6+
<PackageVersion>0.3.1-pre001</PackageVersion>
77
<Title>OsmSharp.IO.Binary</Title>
88
<Authors>Ben Abelshausen</Authors>
99
<Description>A binary IO package for OsmSharp.</Description>

0 commit comments

Comments
 (0)