Update copyright to 2020.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
The MIT License (MIT)
|
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
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
|||||||
16
README.md
16
README.md
@@ -5,23 +5,23 @@
|
|||||||
### VAR.Json
|
### VAR.Json
|
||||||
Add the resulting assembly as reference in your projects, and this line on code:
|
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:
|
Parse any string with JSON content:
|
||||||
|
|
||||||
var jsonParser = new JsonParser();
|
var jsonParser = new JsonParser();
|
||||||
object result = jsonParser("{\"Test\": 1}");
|
object result = jsonParser("{\"Test\": 1}");
|
||||||
|
|
||||||
Serialize any object to JSON:
|
Serialize any object to JSON:
|
||||||
|
|
||||||
var jsonWriter = new JsonWriter();
|
var jsonWriter = new JsonWriter();
|
||||||
string jsonText = jsonWriter(new List<int>{1, 2, 3, 4});
|
string jsonText = jsonWriter(new List<int>{1, 2, 3, 4});
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
A Visual Studio 2015 solutions are provided. Simply, click build on the IDE.
|
A Visual Studio 2015 solutions are provided. Simply, click build on the IDE.
|
||||||
|
|
||||||
A .nuget package can be build using:
|
A .nuget package can be build using:
|
||||||
VAR.Json\Build.NuGet.cmd
|
VAR.Json\Build.NuGet.cmd
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
1. Fork it!
|
1. Fork it!
|
||||||
|
|||||||
Reference in New Issue
Block a user