Skip to content

Repository files navigation

ResumeSharpLib

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

Getting Started

Prerequisites

.NET Standard 2.1 or higher

Installing

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

Install-Package ResumeSharpLib -Version 2.1.0

Usage

To use the ResumeSharpLib do these steps:

  1. import ResumeSharpLib namespaces to your project:
usingusingResumeSharpLib;usingResumeSharpLib.Utils.Extentions;
  1. Create a new instance of JsonResume:
JsonResumejsonResume=newJsonResume();
  1. Add your background to it:
jsonResume.AddAward(newAward()).AddWork(newWork()).AddEducation(newEducation()).AddPublication(newPublication)
...
  1. Convert your object easily to a json string:
stringjsonString=jsonResume.ToJson();

And now every thing is done.

Other Features

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

JsonResumejsonResume=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#

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Sponsor this project

Packages

Used by

Contributors

Languages