Compare commits

..
Author SHA1 Message Date
d3e42f5c64
feat: add system.buffers support for pipe target
Some checks failed
default / dotnet-default-workflow (pull_request) Failing after 44s
2026-08-25 22:36:52 +02:00
461a5b9066
feat: add system.io.pipeline support to pipe io 2026-08-25 22:36:52 +02:00
2 changed files with 3 additions and 3 deletions

View file

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

View file

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