|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | 4 | <TargetFrameworks>netstandard2.1;net9.0</TargetFrameworks> |
5 | 5 | <ImplicitUsings>disable</ImplicitUsings> |
6 | 6 | <Nullable>enable</Nullable> |
7 | 7 | <PackageId>ResumeSharpLib</PackageId> |
8 | 8 | <Description>A library for creating and manipulating Json Resume object it in C#</Description> |
9 | | - <PackageLicenseUrl>https://github.com/jacrys/ResumeSharpLib/blob/master/LICENSE</PackageLicenseUrl> |
10 | 9 | <PackageProjectUrl>https://github.com/jacrys/ResumeSharpLib/</PackageProjectUrl> |
11 | | - <Version>2.0.0</Version> |
| 10 | + <Version>2.1.0</Version> |
12 | 11 | <Authors>jacrys</Authors> |
13 | 12 | <PackageTags>Json , Resume , JsonResume</PackageTags> |
14 | | - <PackageReleaseNotes>Upgraded compatibility, BREAKING CHANGE: The root namespace has changed to ResumeSharpLib, but the object has not changed names</PackageReleaseNotes> |
| 13 | + <PackageReleaseNotes># BREAKING CHANGE: The root namespace has changed to ResumeSharpLib, but the object has not changed names |
| 14 | + |
| 15 | +* Added JsonJob to the library as well for Job Descriptions (https://jsonresume.org/job-description-schema/)</PackageReleaseNotes> |
15 | 16 | <RepositoryType>public</RepositoryType> |
16 | 17 | <RepositoryUrl>https://github.com/jacrys/ResumeSharpLib</RepositoryUrl> |
17 | 18 | <RepositoryCommit></RepositoryCommit> |
|
20 | 21 | <Title>ResumeSharpLib</Title> |
21 | 22 | <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
22 | 23 | <PackageReadmeFile>README.md</PackageReadmeFile> |
| 24 | + <PackageLicenseFile>LICENSE</PackageLicenseFile> |
23 | 25 | </PropertyGroup> |
24 | 26 |
|
25 | 27 | <ItemGroup> |
| 28 | + <None Include="..\LICENSE"> |
| 29 | + <Pack>True</Pack> |
| 30 | + <PackagePath>\</PackagePath> |
| 31 | + </None> |
26 | 32 | <None Include="..\README.md"> |
27 | 33 | <Pack>True</Pack> |
28 | 34 | <PackagePath>\</PackagePath> |
|
0 commit comments