Skip to content

Commit

Permalink
Replace access to package.Exception with package.Results.
Browse files Browse the repository at this point in the history
  • Loading branch information
mavickers committed Nov 12, 2021
1 parent 6a5f030 commit e31621b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Cargo/Cargo.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
<PackageTags>COR</PackageTags>
<Description>A lightweight chain of responsibility library for .Net.</Description>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Version>1.2.3</Version>
<AssemblyVersion>1.2.3.0</AssemblyVersion>
<FileVersion>1.2.3.0</FileVersion>
<Version>1.2.4</Version>
<AssemblyVersion>1.2.4.0</AssemblyVersion>
<FileVersion>1.2.4.0</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Cargo/Station.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public abstract class Station<T>
public bool IsErrored => _package.IsErrored;
public bool IsRepeat => _repeat;
public bool NotRepeat => !_repeat;
public Exception PackageException => _package.Exception;
public List<Station.Result<T>> PackageResults => _package.Results;

public TService GetService<TService>()
{
Expand Down

0 comments on commit e31621b

Please sign in to comment.