Consolidate the .NET, Java, and Node SDKs into root-level pdftract-<lang>/ directories (matching the already-tracked pdftract-go/), per the decision to make the generated SDKs first-class monorepo members rather than separate repos. Content imported from the standalone ~/pdftract-<lang> repos (build artifacts excluded). Removes the broken empty-git nested clones that were polluting the working tree. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
34 lines
1.4 KiB
XML
34 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<NoWarn>CS1591</NoWarn>
|
|
<Version>1.0.0</Version>
|
|
<Authors>Jedarden</Authors>
|
|
<Description>pdftract SDK for .NET — subprocess wrapper around the pdftract binary for PDF text extraction, OCR, search, and metadata.</Description>
|
|
<PackageTags>pdf;extract;ocr;text;search;metadata</PackageTags>
|
|
<PackageProjectUrl>https://github.com/jedarden/pdftract</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/jedarden/pdftract-dotnet</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<LicenseExpression>MIT</LicenseExpression>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageReleaseNotes>
|
|
See https://github.com/jedarden/pdftract-dotnet/releases
|
|
</PackageReleaseNotes>
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
|
|
<IsAotCompatible>true</IsAotCompatible>
|
|
<EnableAOTCompilerAnalyzer>true</EnableAOTCompilerAnalyzer>
|
|
<IsPackable>true</IsPackable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="../../../README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|