An open source library for creating and manipulating Json Resume object in C#
.NET Standard 2.1 or higher
To install ResumeSharpLib just execute the following command in your nuget CLI :
Install-Package ResumeSharpLib -Version 2.0.0
To use the ResumeSharpLib do these steps:
- import ResumeSharpLib namespaces to your project:
using using ResumeSharpLib;
using ResumeSharpLib.Utils.Extentions;
- Create a new instance of JsonResume:
JsonResume jsonResume = new JsonResume();
- Add your background to it:
jsonResume.AddAward(new Award())
.AddWork(new Work())
.AddEducation(new Education())
.AddPublication(new Publication)
...
- Convert your object easily to a json string:
string jsonString = jsonResume.ToJson();
And now every thing is done.
You can also create the JsonResume object from a json string:
JsonResume jsonResume = JsonResume.FromJson(jsonString);
This project is licensed under the MIT License - see the LICENSE file for details