Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -395,5 +395,8 @@ FodyWeavers.xsd
*.msm
*.msp

# Local clone of https://github.com/pymupdf/pymupdf4llm for porting / diff (optional)
pymupdf4llm/

# JetBrains Rider
*.sln.iml
1 change: 1 addition & 0 deletions Demo/Demo.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<Project Sdk="Microsoft.NET.Sdk">
<!-- Demo: Support/, Samples/&lt;area&gt;/; MuPDF.NET4LLM fixtures in Samples/Llm/Program.Llm.*.Fixtures.cs. -->

<PropertyGroup>
<OutputType>Exe</OutputType>
Expand Down
19 changes: 19 additions & 0 deletions Demo/GlobalUsings.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
global using System;
global using System.Collections.Generic;
global using System.IO;
global using System.Linq;
global using System.Text;
global using System.Threading;
global using mupdf;
global using MuPDF.NET;
global using MuPDF.NET4LLM;
global using MuPDF.NET4LLM.Helpers;
global using MuPDF.NET4LLM.Llama;
global using SkiaSharp;
global using Box = MuPDF.NET.Box;
global using Encoding = System.Text.Encoding;
global using File = System.IO.File;
global using Font = MuPDF.NET.Font;
global using Morph = MuPDF.NET.Morph;
global using TextWriter = MuPDF.NET.TextWriter;
global using Utils = MuPDF.NET.Utils;
Loading