chore: add nuget package description
All checks were successful
default / dotnet-default-workflow (push) Successful in 1m16s

This also removes the description from the package readme. The desciption of the package is
shown on nuget.org in the list view and if no package readme is defined on the detail view of
a package version. Since we provide a package readme we do not need the description shown
twice.
This commit is contained in:
Louis Seubert 2026-05-21 22:07:24 +02:00
commit 3dd3c358a0
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
2 changed files with 1 additions and 3 deletions

View file

@ -18,6 +18,7 @@
<PropertyGroup> <PropertyGroup>
<PackageReadmeFile>package-readme.md</PackageReadmeFile> <PackageReadmeFile>package-readme.md</PackageReadmeFile>
<PackageDescription>.NET library for interacting with external command-line interfaces, including process execution, piping, and cancellation.</PackageDescription>
<PackageIcon>package-icon.png</PackageIcon> <PackageIcon>package-icon.png</PackageIcon>
<PackageProjectUrl>https://code.geekeey.de/geekeey/process/src/branch/main/src/process</PackageProjectUrl> <PackageProjectUrl>https://code.geekeey.de/geekeey/process/src/branch/main/src/process</PackageProjectUrl>
<PackageLicenseExpression>EUPL-1.2</PackageLicenseExpression> <PackageLicenseExpression>EUPL-1.2</PackageLicenseExpression>

View file

@ -1,6 +1,3 @@
Process is a library for interacting with external command-line interfaces. It provides a convenient model for launching
processes, redirecting input and output streams, awaiting completion, handling cancellation, and more.
## Features ## Features
- **Input and Output redirection:** flexible piping model, that allows to redirect the process's streams. - **Input and Output redirection:** flexible piping model, that allows to redirect the process's streams.