|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk">
|
2 | 2 |
|
3 |
| - <PropertyGroup> |
4 |
| - <TargetFramework>net8.0</TargetFramework> |
5 |
| - <ImplicitUsings>enable</ImplicitUsings> |
6 |
| - <Nullable>enable</Nullable> |
7 |
| - </PropertyGroup> |
8 |
| - |
9 |
| - <ItemGroup> |
10 |
| - <PackageReference Include="PdfLibCore" Version="2.5.0" /> |
11 |
| - <PackageReference Include="SixLabors.ImageSharp" Version="3.1.4" /> |
12 |
| - </ItemGroup> |
| 3 | + <PropertyGroup> |
| 4 | + <Authors>Søren Kottal</Authors> |
| 5 | + <Copyright>$([System.DateTime]::UtcNow.ToString(`yyyy`)) © Søren Kottal</Copyright> |
| 6 | + <Description> |
| 7 | + Image decoder for PDF files for ImageSharp based on PdfLibCore |
| 8 | + </Description> |
| 9 | + <GenerateAssemblyInfo>false</GenerateAssemblyInfo> |
| 10 | + <TargetFramework>net8.0</TargetFramework> |
| 11 | + <ImplicitUsings>enable</ImplicitUsings> |
| 12 | + <Nullable>enable</Nullable> |
| 13 | + <PackageId>ImageSharpCommunity.Formats.Pdf</PackageId> |
| 14 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 15 | + <PackageProjectUrl>https://github.com/skttl/ImageSharpCommunity.Formats.Pdf</PackageProjectUrl> |
| 16 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 17 | + <PackageTags>image</PackageTags> |
| 18 | + <Product>ImageSharpCommunity.Formats.Pdf</Product> |
| 19 | + <RepositoryType>git</RepositoryType> |
| 20 | + <RepositoryUrl>https://github.com/skttl/ImageSharpCommunity.Formats.Pdf</RepositoryUrl> |
| 21 | + <RootNamespace>ImageSharpCommunity.Formats.Pdf</RootNamespace> |
| 22 | + <Title>PDF Decoder for ImageSharp</Title> |
| 23 | + <Version>0.1.0</Version> |
| 24 | + </PropertyGroup> |
| 25 | + |
| 26 | + <ItemGroup> |
| 27 | + <PackageReference Include="PdfLibCore" Version="2.5.0" /> |
| 28 | + <PackageReference Include="SixLabors.ImageSharp" Version="3.1.4" /> |
| 29 | + </ItemGroup> |
| 30 | + |
| 31 | + <ItemGroup> |
| 32 | + <None Include="..\..\README.md"> |
| 33 | + <Pack>True</Pack> |
| 34 | + <PackagePath>\</PackagePath> |
| 35 | + </None> |
| 36 | + </ItemGroup> |
13 | 37 |
|
14 | 38 | </Project>
|
0 commit comments