Compare commits

...

2 commits

Author SHA1 Message Date
20ffee6d43
chore: disable code format rules in test projects
Some checks failed
default / dotnet-default-workflow (push) Failing after 2m11s
2026-05-10 10:33:19 +02:00
5a4b6f2cbb
chore: fix warning as error working 2026-05-10 10:33:19 +02:00
4 changed files with 16 additions and 4 deletions

View file

@ -16,7 +16,7 @@
<AnalysisMode>Recommended</AnalysisMode>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<WarningsAsErrors>nullable</WarningsAsErrors>
<WarningsAsErrors Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</WarningsAsErrors>
<TreatWarningsAsErrors Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</TreatWarningsAsErrors>
</PropertyGroup>
<PropertyGroup Label="NuGet Package Info">

View file

@ -0,0 +1,6 @@
[*.{cs,vb}]
# disable IDE0060: Remove unused parameter
dotnet_diagnostic.IDE0060.severity = none
# disable IDE0005: Unnecessary using directive
dotnet_diagnostic.IDE0005.severity = none

View file

@ -0,0 +1,6 @@
[*.{cs,vb}]
# disable IDE0060: Remove unused parameter
dotnet_diagnostic.IDE0060.severity = none
# disable IDE0005: Unnecessary using directive
dotnet_diagnostic.IDE0005.severity = none

View file

@ -8,7 +8,7 @@ namespace Geekeey.Process;
/// <summary>
/// Represents an asynchronous execution of a command.
/// </summary>
public partial class CommandTask<TResult> : IDisposable
public sealed partial class CommandTask<TResult> : IDisposable
{
private readonly Process _process;
@ -82,7 +82,7 @@ public partial class CommandTask<TResult> : IDisposable
}
}
public partial class CommandTask<TResult>
public sealed partial class CommandTask<TResult>
{
/// <summary>
/// Converts the command task into a regular task.