Skip to content

Commit

Permalink
Merge pull request #34 from Cysharp/feature/UpdateTargetFrameworksNet9
Browse files Browse the repository at this point in the history
Added support for .NET 9 and removed support for .NET 6
  • Loading branch information
mayuki authored Dec 5, 2024
2 parents c277f50 + 0421735 commit cd6d8ec
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/LogicLooper/LogicLooper.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netstandard2.0;netstandard2.1;net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;netstandard2.1;net8.0;net9.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
2 changes: 1 addition & 1 deletion test/LogicLooper.Test/LogicLooper.Test.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<NoWarn>1998</NoWarn>
<SignAssembly>true</SignAssembly>
Expand Down
1 change: 0 additions & 1 deletion test/LogicLooper.Test/LogicLooperTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,6 @@ public async Task AsyncAction_Fault()
count++;
await Task.Delay(100);
throw new InvalidOperationException();
return true;
});

await Assert.ThrowsAsync<InvalidOperationException>(async () => await runLoopTask);
Expand Down

0 comments on commit cd6d8ec

Please sign in to comment.