Compare commits

..
Author SHA1 Message Date
d45574645d
feat: add system.buffers support for pipe target
All checks were successful
default / dotnet-default-workflow (pull_request) Successful in 1m12s
default / dotnet-default-workflow (push) Successful in 1m19s
2026-08-25 22:38:52 +02:00
165089987e
feat: add system.io.pipeline support to pipe io 2026-08-25 22:38:37 +02:00
2 changed files with 3 additions and 3 deletions

View file

@ -1,9 +1,9 @@
// Copyright (c) The Geekeey Authors // Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2 // SPDX-License-Identifier: EUPL-1.2
using System.Text;
using System.IO.Pipelines;
using System.Buffers; using System.Buffers;
using System.IO.Pipelines;
using System.Text;
using Geekeey.Process.Buffered; using Geekeey.Process.Buffered;

View file

@ -1,8 +1,8 @@
// Copyright (c) The Geekeey Authors // Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2 // SPDX-License-Identifier: EUPL-1.2
using System.Text;
using System.IO.Pipelines; using System.IO.Pipelines;
using System.Text;
namespace Geekeey.Process; namespace Geekeey.Process;