Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
update childprocessservice
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Mar 12, 2024
1 parent 046307b commit 01640b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/OneWare.Essentials/OneWare.Essentials.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<Import Project="..\..\build\props\Asmichi.ChildProcess.props"/>

<PropertyGroup>
<Version>0.4.0</Version>
<Version>0.4.1</Version>
<Authors>Hendrik Mennen</Authors>
<Company>One Ware</Company>
<Description>Essentials Needed for One Ware Plugin Development</Description>
Expand Down
2 changes: 1 addition & 1 deletion src/OneWare.Essentials/Services/IChildProcessService.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ namespace OneWare.Essentials.Services;
public interface IChildProcessService
{
public Task<(bool success, string output)> ExecuteShellAsync(string path, IReadOnlyCollection<string> arguments, string workingDirectory,
string status, AppState state = AppState.Loading, bool showTimer = false, Action<string>? outputAction = null,
string status, AppState state = AppState.Loading, bool showTimer = false, Func<string, bool>? outputAction = null,
Func<string, bool>? errorAction = null);
}

0 comments on commit 01640b1

Please sign in to comment.