chore: add copyright header
All checks were successful
default / dotnet default workflow (8.0) (push) Successful in 47s

This commit is contained in:
Louis Seubert 2024-05-10 21:49:43 +02:00
parent 9fb5ab2d38
commit d3bd04fe39
Signed by: louis9902
GPG key ID: 4B9DB28F826553BD
48 changed files with 153 additions and 9 deletions

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using Spectre.Console.Cli; using Spectre.Console.Cli;
namespace Geekeey.Extensions.Process.Tests.Dummy; namespace Geekeey.Extensions.Process.Tests.Dummy;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using Spectre.Console.Cli; using Spectre.Console.Cli;
namespace Geekeey.Extensions.Process.Tests.Dummy.Commands; namespace Geekeey.Extensions.Process.Tests.Dummy.Commands;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Buffers; using System.Buffers;
using Spectre.Console.Cli; using Spectre.Console.Cli;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using Spectre.Console.Cli; using Spectre.Console.Cli;
namespace Geekeey.Extensions.Process.Tests.Dummy.Commands; namespace Geekeey.Extensions.Process.Tests.Dummy.Commands;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using Spectre.Console.Cli; using Spectre.Console.Cli;
namespace Geekeey.Extensions.Process.Tests.Dummy.Commands; namespace Geekeey.Extensions.Process.Tests.Dummy.Commands;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Buffers; using System.Buffers;
using System.Text; using System.Text;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Buffers; using System.Buffers;
using System.Text; using System.Text;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Buffers; using System.Buffers;
using System.Globalization; using System.Globalization;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using Spectre.Console.Cli; using Spectre.Console.Cli;
namespace Geekeey.Extensions.Process.Tests.Dummy.Commands; namespace Geekeey.Extensions.Process.Tests.Dummy.Commands;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using Spectre.Console.Cli; using Spectre.Console.Cli;
namespace Geekeey.Extensions.Process.Tests.Dummy.Commands; namespace Geekeey.Extensions.Process.Tests.Dummy.Commands;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process.Tests.Dummy; namespace Geekeey.Extensions.Process.Tests.Dummy;
[Flags] [Flags]

View file

@ -1,4 +1,7 @@
using System.Reflection; // Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Reflection;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using Geekeey.Extensions.Process.Tests.Dummy.Commands; using Geekeey.Extensions.Process.Tests.Dummy.Commands;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process.Tests.Dummy; namespace Geekeey.Extensions.Process.Tests.Dummy;
internal sealed class Terminal : IDisposable internal sealed class Terminal : IDisposable

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using Geekeey.Extensions.Process.Buffered; using Geekeey.Extensions.Process.Buffered;
namespace Geekeey.Extensions.Process.Tests; namespace Geekeey.Extensions.Process.Tests;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Text; using System.Text;
using Geekeey.Extensions.Process.Buffered; using Geekeey.Extensions.Process.Buffered;

View file

@ -1,4 +1,7 @@
namespace Geekeey.Extensions.Process.Tests; // Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process.Tests;
[TestFixture] [TestFixture]
internal sealed class CommandTests internal sealed class CommandTests

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.ComponentModel; using System.ComponentModel;
using Geekeey.Extensions.Process.Buffered; using Geekeey.Extensions.Process.Buffered;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process.Tests; namespace Geekeey.Extensions.Process.Tests;
internal static class ProcessTree internal static class ProcessTree

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process.Tests; namespace Geekeey.Extensions.Process.Tests;
internal sealed class TestEnvironment(Action action) : IDisposable internal sealed class TestEnvironment(Action action) : IDisposable

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Reflection; using System.Reflection;
namespace Geekeey.Extensions.Process.Tests; namespace Geekeey.Extensions.Process.Tests;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Reflection; using System.Reflection;
namespace Geekeey.Extensions.Process.Tests; namespace Geekeey.Extensions.Process.Tests;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process.Tests; namespace Geekeey.Extensions.Process.Tests;
[TestFixture] [TestFixture]

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using Geekeey.Extensions.Process.Buffered; using Geekeey.Extensions.Process.Buffered;
namespace Geekeey.Extensions.Process.Tests; namespace Geekeey.Extensions.Process.Tests;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Text; using System.Text;
using Geekeey.Extensions.Process.Buffered; using Geekeey.Extensions.Process.Buffered;

View file

@ -1,2 +1,5 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
[assembly: Parallelizable(ParallelScope.Fixtures)] [assembly: Parallelizable(ParallelScope.Fixtures)]
// [assembly: LevelOfParallelism(3)] // [assembly: LevelOfParallelism(3)]

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using Geekeey.Extensions.Process.Buffered; using Geekeey.Extensions.Process.Buffered;
namespace Geekeey.Extensions.Process.Tests; namespace Geekeey.Extensions.Process.Tests;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
namespace Geekeey.Extensions.Process.Win.Notify; namespace Geekeey.Extensions.Process.Win.Notify;

View file

@ -1,4 +1,7 @@
namespace Geekeey.Extensions.Process.Win.Notify; // Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process.Win.Notify;
internal static class Program internal static class Program
{ {

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Text; using System.Text;
namespace Geekeey.Extensions.Process.Buffered; namespace Geekeey.Extensions.Process.Buffered;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process.Buffered; namespace Geekeey.Extensions.Process.Buffered;
/// <summary> /// <summary>

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Globalization; using System.Globalization;
using System.Text; using System.Text;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process; namespace Geekeey.Extensions.Process;
/// <summary> /// <summary>

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Diagnostics.CodeAnalysis; using System.Diagnostics.CodeAnalysis;
using System.Diagnostics.Contracts; using System.Diagnostics.Contracts;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Diagnostics; using System.Diagnostics;
namespace Geekeey.Extensions.Process; namespace Geekeey.Extensions.Process;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Diagnostics.Contracts; using System.Diagnostics.Contracts;
using System.Text; using System.Text;

View file

@ -1,4 +1,7 @@
namespace Geekeey.Extensions.Process; // Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process;
/// <summary> /// <summary>
/// Instructions for running a process. /// Instructions for running a process.

View file

@ -1,4 +1,7 @@
using Geekeey.Extensions.Process; // Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using Geekeey.Extensions.Process;
namespace Geekeey.Extensions.Process; namespace Geekeey.Extensions.Process;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process; namespace Geekeey.Extensions.Process;
/// <summary> /// <summary>

View file

@ -1,4 +1,7 @@
namespace Geekeey.Extensions.Process; // Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process;
/// <summary> /// <summary>
/// Represents the result of a command execution. /// Represents the result of a command execution.

View file

@ -1,4 +1,7 @@
using System.Runtime.CompilerServices; // Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Runtime.CompilerServices;
namespace Geekeey.Extensions.Process; namespace Geekeey.Extensions.Process;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Runtime.Versioning; using System.Runtime.Versioning;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Diagnostics; using System.Diagnostics;
using System.Runtime.Versioning; using System.Runtime.Versioning;
using System.Text; using System.Text;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.ComponentModel; using System.ComponentModel;
using System.Diagnostics; using System.Diagnostics;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process; namespace Geekeey.Extensions.Process;
internal static class BufferSizes internal static class BufferSizes

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Buffers; using System.Buffers;
using System.Diagnostics.CodeAnalysis; using System.Diagnostics.CodeAnalysis;

View file

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

View file

@ -1,4 +1,7 @@
using System.Buffers; // Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
using System.Buffers;
using System.Text; using System.Text;
namespace Geekeey.Extensions.Process; namespace Geekeey.Extensions.Process;

View file

@ -1,3 +1,6 @@
// Copyright (c) The Geekeey Authors
// SPDX-License-Identifier: EUPL-1.2
namespace Geekeey.Extensions.Process; namespace Geekeey.Extensions.Process;
/// <summary> /// <summary>