Skip to content

sinathr/JsonResumeSharp

Repository files navigation

JsonResumeSharp

An open source library for creating and manipulating Json Resume object in C#

Getting Started

Prerequisites

.NET Standard 2.0 or higher

Installing

To install JsonResumeSharp just execute the following command in your nuget CLI :

Install-Package JsonResumeSharp -Version 1.0.0

Usage

To use the JsonResumeSharp do these steps:

  1. import JsonResumeSharp namespaces to your project:
using using JsonResumeSharp;
using JsonResumeSharp.Utils.Extentions;
  1. Create a new instance of JsonResume:
 JsonResume jsonResume = new JsonResume();
  1. Add your background to it:
jsonResume.AddAward(new Award())
                .AddWork(new Work())
                .AddEducation(new Education())
                .AddPublication(new Publication)
                ...
  1. Convert your object easily to a json string:
string jsonString = jsonResume.ToJson();

And now every thing is done.

Other Features

You can also create the JsonResume object from a json string:

JsonResume jsonResume = JsonResume.FromJson(jsonString);

License

This project is licensed under the MIT License - see the LICENSE file for details

About

An open source library for creating and manipulating Json Resume object in C#

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages