Skip to content

Commit

Permalink
Moved IActionableResult in Common namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
jscarle committed Feb 20, 2024
1 parent 491026c commit 3b44a78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#if NET7_0_OR_GREATER
namespace LightResults;
namespace LightResults.Common;

/// <summary>Defines an actionable result.</summary>
public interface IActionableResult<out TResult> : IResult where TResult : IActionableResult<TResult>
Expand Down
2 changes: 1 addition & 1 deletion src/LightResults/LightResults.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;netstandard2.0;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net6.0;net7.0;net8.0</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>LightResults</RootNamespace>
Expand Down

0 comments on commit 3b44a78

Please sign in to comment.