From 5e6b51506e460b078a202e422f5aa334b44f4b02 Mon Sep 17 00:00:00 2001 From: "Valeriano A.R" Date: Sun, 6 Sep 2020 03:48:33 +0200 Subject: [PATCH] Update copyright to 2020. --- LICENSE.txt | 2 +- README.md | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/LICENSE.txt b/LICENSE.txt index 5fcf784..d800e6c 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2016-2017 Valeriano Alfonso Rodriguez +Copyright (c) 2016-2020 Valeriano Alfonso Rodriguez Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 941ab6d..8b0cab6 100644 --- a/README.md +++ b/README.md @@ -5,23 +5,23 @@ ### VAR.Json Add the resulting assembly as reference in your projects, and this line on code: - using VAR.Json; + using VAR.Json; Parse any string with JSON content: - - var jsonParser = new JsonParser(); - object result = jsonParser("{\"Test\": 1}"); + + var jsonParser = new JsonParser(); + object result = jsonParser("{\"Test\": 1}"); Serialize any object to JSON: - - var jsonWriter = new JsonWriter(); - string jsonText = jsonWriter(new List{1, 2, 3, 4}); + + var jsonWriter = new JsonWriter(); + string jsonText = jsonWriter(new List{1, 2, 3, 4}); ## Building A Visual Studio 2015 solutions are provided. Simply, click build on the IDE. A .nuget package can be build using: - VAR.Json\Build.NuGet.cmd + VAR.Json\Build.NuGet.cmd ## Contributing 1. Fork it!