Compare commits
2 commits
20ffee6d43
...
7e9ba39259
| Author | SHA1 | Date | |
|---|---|---|---|
|
7e9ba39259 |
|||
|
22e3997793 |
4 changed files with 15 additions and 3 deletions
|
|
@ -16,7 +16,7 @@
|
||||||
<AnalysisMode>Recommended</AnalysisMode>
|
<AnalysisMode>Recommended</AnalysisMode>
|
||||||
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
|
||||||
<WarningsAsErrors>nullable</WarningsAsErrors>
|
<WarningsAsErrors>nullable</WarningsAsErrors>
|
||||||
<WarningsAsErrors Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</WarningsAsErrors>
|
<TreatWarningsAsErrors Condition="'$(ContinuousIntegrationBuild)' == 'true'">true</TreatWarningsAsErrors>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<PropertyGroup Label="NuGet Package Info">
|
<PropertyGroup Label="NuGet Package Info">
|
||||||
|
|
|
||||||
6
src/process.dummy.app/.editorconfig
Normal file
6
src/process.dummy.app/.editorconfig
Normal 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
|
||||||
6
src/process.tests/.editorconfig
Normal file
6
src/process.tests/.editorconfig
Normal 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
|
||||||
|
|
@ -8,7 +8,7 @@ namespace Geekeey.Process;
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Represents an asynchronous execution of a command.
|
/// Represents an asynchronous execution of a command.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class CommandTask<TResult> : IDisposable
|
public sealed partial class CommandTask<TResult> : IDisposable
|
||||||
{
|
{
|
||||||
private readonly Process _process;
|
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>
|
/// <summary>
|
||||||
/// Converts the command task into a regular task.
|
/// Converts the command task into a regular task.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue