-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMarkItDownNet.csproj
More file actions
25 lines (21 loc) · 991 Bytes
/
MarkItDownNet.csproj
File metadata and controls
25 lines (21 loc) · 991 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Markdig" Version="0.41.3" />
<PackageReference Include="PDFtoImage" Version="5.1.1" />
<PackageReference Include="Serilog" Version="4.3.0" />
<PackageReference Include="Serilog.Settings.Configuration" Version="9.0.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="6.0.0" />
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" />
<PackageReference Include="Tesseract" Version="5.2.0" />
<PackageReference Include="PdfPig" Version="0.1.11" />
</ItemGroup>
<ItemGroup>
<!-- Bundled native libraries for Linux (x64) -->
<None Include="runtimes/linux-x64/native/*" CopyToOutputDirectory="PreserveNewest" Pack="true" PackagePath="runtimes/linux-x64/native" />
</ItemGroup>
</Project>