Skip to content

Commit 9b8edd0

Browse files
committed
Updated to 1.1.0.0
Signed-off-by: rpgmaker <[email protected]>
1 parent 375cb57 commit 9b8edd0

File tree

8 files changed

+243
-217
lines changed

8 files changed

+243
-217
lines changed

NetJSON.Tests/SerializeTests.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -504,12 +504,14 @@ public void SerializeDateTimeOffSetWithDifferentOffset() {
504504

505505
[TestMethod]
506506
public void SerializePolyObjects() {
507-
NetJSON.IncludeTypeInformation = true;
508-
507+
509508
var graph = new Graph { name = "my graph" };
510509
graph.nodes = new List<Node>();
511510
graph.nodes.Add(new NodeA { number = 10f });
512511
graph.nodes.Add(new NodeB { text = "hello" });
512+
513+
NetJSON.IncludeTypeInformation = true;
514+
513515
var json = NetJSON.Serialize(graph, new NetJSONSettings { IncludeTypeInformation = true });
514516
var jgraph = NetJSON.Deserialize<Graph>(json);
515517

1.5 KB
Binary file not shown.

NetJSON.v12.suo

6 KB
Binary file not shown.

NetJSON/NetJSON.cs

Lines changed: 236 additions & 212 deletions
Large diffs are not rendered by default.

NetJSON/NetJSON.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<id>NetJSON</id>
55
<title>NetJSON</title>
66
<tags>json json-serializer javascript JSON serializer binary</tags>
7-
<version>1.0.15.5</version>
7+
<version>1.1.0.0</version>
88
<authors>TJ Bakre</authors>
99
<description>Faster than Any Binary?</description>
1010
<language>en-US</language>

NetJSON/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.15.5")]
36-
[assembly: AssemblyFileVersion("1.0.15.5")]
35+
[assembly: AssemblyVersion("1.1.0.0")]
36+
[assembly: AssemblyFileVersion("1.1.0.0")]

NetJSON/lib/net35/NetJSON.dll

1.5 KB
Binary file not shown.

NetJSON/lib/net40/NetJSON.dll

1.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)