-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMsgToPdf.csproj
More file actions
34 lines (29 loc) · 1.37 KB
/
Copy pathMsgToPdf.csproj
File metadata and controls
34 lines (29 loc) · 1.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>true</IsPackable>
<PackageId>Tideway.MsgToPdf</PackageId>
<Version>1.1.0</Version>
<Authors>Tideway</Authors>
<Description>Converts Outlook .msg email files to PDF. MsgReader extracts the message as HTML (headers, body and inline images); PuppeteerSharp renders it to PDF with headless Chromium. No Outlook/COM required; runs on Windows, macOS and Linux.</Description>
<PackageTags>msg;outlook;email;pdf;converter;puppeteer;chromium</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<RepositoryUrl>https://github.com/ricardgb/MsgToPdf</RepositoryUrl>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MsgReader" Version="6.1.0" />
<PackageReference Include="PuppeteerSharp" Version="20.0.5" />
<PackageReference Include="RtfPipe" Version="2.0.7677.4303" />
</ItemGroup>
<ItemGroup>
<!-- Native libqpdf is only loaded when AppendPdfAttachments is enabled. -->
<PackageReference Include="Tideway.PdfTools" Version="1.0.0" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>