Skip to content

Commit b76692c

Browse files
committed
Merge branch 'develop'
2 parents 4a67570 + af335e1 commit b76692c

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

Streamliner/Core/Utilities/IRunnable.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ public interface IRunnable
55
void Start(object context = null);
66
void Stop();
77

8-
bool IsRunning { get; set; }
8+
bool IsRunning { get; }
99
}
1010
}

Streamliner/Core/Utilities/Runnable.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ namespace Streamliner.Core.Utilities
44
{
55
public abstract class Runnable : IRunnable, IDisposable
66
{
7-
public bool IsRunning { get; set; }
7+
public bool IsRunning => _status == RunnableStatus.Running;
8+
89
private RunnableStatus _status = RunnableStatus.Stopped;
910

1011
protected abstract void OnStart(object context = null);

Streamliner/Streamliner.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
<TargetFramework>net6.0</TargetFramework>
55
<Authors>Nikolas Andreou</Authors>
66
<Product>Streamliner</Product>
7-
<Description>A .NET 6 library that enables the creation of code workflows. Streamliner creates a directed acyclic graph which represents the workflow in separate, single responsibility blocks.</Description>
7+
<Description>A .NET 6 library that enables the creation of code workflows. Streamliner creates a directed acyclic graph which represents the workflow in separate, single responsibility blocks running in parallel.</Description>
88
<Copyright>Copyright ©2021 Nikolas Andreou. All rights reserved.</Copyright>
99
<RepositoryUrl>https://github.com/Codeh4ck/Streamliner</RepositoryUrl>
1010
<RepositoryType>Git</RepositoryType>
1111
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1212
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
1313
<PackageProjectUrl>https://github.com/Codeh4ck/Streamliner</PackageProjectUrl>
1414
<PackageReleaseNotes>Deploying package to NuGet</PackageReleaseNotes>
15-
<AssemblyVersion>1.3.0.0</AssemblyVersion>
15+
<AssemblyVersion>1.3.1</AssemblyVersion>
1616
<FileVersion>1.3.0.0</FileVersion>
17-
<Version>1.3.0</Version>
17+
<Version>1.3.1</Version>
1818
<SignAssembly>false</SignAssembly>
1919
</PropertyGroup>
2020

0 commit comments

Comments
 (0)