Skip to content

Commit

Permalink
Fix target frameworks
Browse files Browse the repository at this point in the history
  • Loading branch information
ghost1face committed May 24, 2022
1 parent bb94090 commit a664d65
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,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFrameworks>net6.0</TargetFrameworks>
<Nullable>enable</Nullable>

<IsPackable>false</IsPackable>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ public void Operation_LogsExceptionWhenSet()
public void Operation_SetExceptionAndRethrow_Throws()
{
var logs = new List<string>();

Assert.Throws<NotImplementedException>(() =>
{
using (var logger = new TailLogger(logs))
Expand Down

0 comments on commit a664d65

Please sign in to comment.