ResumeParser 1.0.0.3
dotnet add package ResumeParser --version 1.0.0.3
NuGet\Install-Package ResumeParser -Version 1.0.0.3
<PackageReference Include="ResumeParser" Version="1.0.0.3" />
paket add ResumeParser --version 1.0.0.3
#r "nuget: ResumeParser, 1.0.0.3"
// Install ResumeParser as a Cake Addin #addin nuget:?package=ResumeParser&version=1.0.0.3 // Install ResumeParser as a Cake Tool #tool nuget:?package=ResumeParser&version=1.0.0.3
//Use this package to read resume, parse resume ResumeParse parser = new ResumeParse(); var output = parser.Parse(filepath); FirstName = output.FirstName; MiddleName = output.MiddleName; LastName = output.LastName; Gender = output.Gender; EmailAddress = output.EmailAddress; PhoneNumbers = output.PhoneNumbers; Languages = output.Languages; SummaryDescription = output.SummaryDescription; Address1 = output.Address1; Location = output.Location; ZipCode = output.ZipCode;
To display resume in Iframe //Path.ChangeExtension(filepath, ".html") is the output html file path parse.ConvertToHtml(filepath, Path.ChangeExtension(filepath, ".html"));
HTMLfilePath = "/resume/"+Path.ChangeExtension(Path.GetFileName(filepath), ".html");
in Html File <iframe width="800" height="500" src="@Model.HTMLfilePath"></iframe>
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.