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

Commit

Permalink
EnvironmentService
Browse files Browse the repository at this point in the history
  • Loading branch information
HendrikMennen committed Mar 13, 2024
1 parent 696dbc0 commit 993da60
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
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.1</Version>
<Version>0.4.2</Version>
<Authors>Hendrik Mennen</Authors>
<Company>One Ware</Company>
<Description>Essentials Needed for One Ware Plugin Development</Description>
Expand Down
8 changes: 8 additions & 0 deletions src/OneWare.Essentials/Services/IEnvironmentService.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
namespace OneWare.Essentials.Services;

public interface IEnvironmentService
{
public void SetEnvironmentVariable(string key, string? value);

public void SetPath(string key, string? path);
}

0 comments on commit 993da60

Please sign in to comment.